...
You can test sending mail from your server. Try it with a command like this from your server (this command requires the mailx package to be installed):
Panel |
---|
echo "test" | mail -s testsubject someemail@hotmailorwherever.com |
...
Change the configuration so that only POP3 is available (unless you need IMAP too):
{{Box File| /etc/dovecot.conf|
Code Block |
---|
# protocols = imap imaps pop3 pop3s
protocols = pop3
|
...
{{Box File| /etc/mail/sendmail.mc|
Code Block |
---|
# Change this line:
DAEMON_OPTIONS(`Port=smtp,Addr=127.0.0.1, Name=MTA')dnl
# To this line:
DAEMON_OPTIONS(`Port=smtp,Name=MTA')dnl
|
...