Sendmail
Sendmail is a mail transfer said server MTA (mail transfer agent) using a Unix-like operating system. You can configure the server to send emails via Tipimail. For more information about Sendmail, feel free to vist the official website
Edite or create the file /etc/mail/sendmail.mc
1 2 3 4 5 | define( 'SMART_HOST' , 'smtp.tipimail.com' ) FEATURE( 'access_db' )dnl define( 'RELAY_MAILER_ARGS' , 'TCP $h 587' )dnl define( 'ESMTP_MAILER_ARGS' , 'TCP $h 587' )dnl |
You must now define the authentication parameters. Edit or create the /etc/mail/authinfo and add the following lines
1 | AuthInfo:smtp.tipimail.com "U:<your-tipimail-smtp-username>" "P:<your-tipimaiml-smtp-password>" "M:DIGEST-MD5" < /your-tipimaiml-smtp-password >< /your-tipimail-smtp-username > |
Update the system file of Sendmail
1 2 3 4 | cd /etc/mail $ m4 sendmail.mc >sendmail.cf $ makemap hash /etc/mail/authinfo < /etc/mail/authinfo |
Save your config and restart Sendmail
1 | /sbin/service sendmail restart |