Quote:
|
For example, if my email address is john.doe@ntlworld.com does that means I have to create an account on the Debian server as john.doe?
|
No, the user name doesn't matter, you could create a user named
sampleuser with the password
samplepassword.
Now you have to prepare Postfix for relaying through another server:
Code:
postconf -e 'smtp_sasl_auth_enable = yes'
postconf -e 'smtp_sasl_password_maps = hash:/etc/postfix/sasl_passwd'
postconf -e 'smtp_sasl_security_options ='
chown root:root /etc/postfix/sasl_passwd
chmod 600 /etc/postfix/sasl_passwd
postmap /etc/postfix/sasl_passwd
/etc/init.d/postfix restart
In /etc/postfix/sasl_passwd you put your ISP's SMTP server and a user name and password that are allowed to send through that server:
Code:
smtp.ntlworld.com Username on smtp.ntlworld.com:Password
Whenever you change /etc/postfix/sasl_passwd you have to do the following:
Code:
postmap /etc/postfix/sasl_passwd
/etc/init.d/postfix restart
Now if you want to send email from your XP machine you tell your email client to use the user
sampleuser with the password
samplepassword along with your internal SMTP server (192.168.0.3).
And fetching emails doesn't change: you simply fetch them from your ISP's POP3 server (pop.ntlworld.com).
Recent comments
4 hours 44 min ago
9 hours 37 min ago
18 hours 29 min ago
19 hours 29 min ago
23 hours 16 min ago
1 day 30 min ago
1 day 4 hours ago
1 day 11 hours ago
1 day 20 hours ago
1 day 21 hours ago