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
10 hours 27 min ago
17 hours 8 min ago
20 hours 59 min ago
22 hours 37 min ago
1 day 7 hours ago
1 day 16 hours ago
1 day 17 hours ago
1 day 20 hours ago
2 days 1 hour ago
2 days 1 hour ago