...
Voicemail forwarding can either be setup by the administrator or the individual users using the User Portal. One or two email addresses can be specified. The screen shot below is from the User Portal.
Troubleshooting
...
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
|
...