Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

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

...

In a more general case and before you try to use sendmail for any additional tasks, you should make sure that the MX record for your domain is properly set in the DNS zone file. Refer to HowTo Configure DHCP and DNS ServersServer Configuration. You can verify current settings as follows:

...

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

...