April 12th, 2013 |
admin |
Usually, you do not need to setup an email server under Linux desktop operating system. Most GUI email clients (such as Thunderbird) supports Gmail POP3 and IMAP configurations. But, how do you send mail via the standard or /usr/bin/mail user agents or a shell script? Programs such as sendmail / postfix / exim can be [...]
April 1st, 2013 |
admin |
You may see error “Fatal! Write failure” error message while adding email forwarders OR setting a catchall email address from cPanel >> “Email Accounts” section. The error is: Fatal! Write Failure: /etc/valiases/domainname.tld. Ignore any messages of success this can only result in failure! The reason is the /etc/valiases/domainname.tld file is missing OR having incorrect permissions. [...]
March 6th, 2013 |
admin |
Virtual Users And Domains With Postfix, Courier And MySQL (+ SMTP-AUTH, Quota, SpamAssassin, ClamAV) Version 1.0 Author: Falko Timme <ft [at] falkotimme [dot] com> Last edited 10/05/2005 This tutorial is Copyright (c) 2005 by Falko Timme. It is derived from a tutorial from Christoph Haas which you can find at http://workaround.org. You are free to [...]
February 20th, 2013 |
admin |
You suddenly realize that the emails on your server are not working and the mail logs shows the following messages: 1MnfEt-0007pQ-Tn == xyz@abc.com R=defer_router defer (-1): All deliveries are handled by MailScanner 1MnfBw-00037y-9h == abc@xyz.com R=defer_router defer (-1): All deliveries are handled by MailScanner This mostly happens when Mailscanner is not working properly as all [...]
January 29th, 2013 |
admin |
10 Test Postfix To see if Postfix is ready for SMTP-AUTH and TLS, run telnet localhost 25 After you have established the connection to your postfix mail server type ehlo localhost If you see the lines 250-STARTTLS and 250-AUTH everything is fine. Type quit to return to the system’s shell. 11 Populate The [...]
November 19th, 2012 |
admin |
To get a copy of every mail send from a mail , to someaddress@somedomain.com Add the following to etc/exim.filter if $sender_address contains “@somedomain.com“ then unseen deliver “someaddress@somedomain.com“ endif Incoming search terms:copy email content from Plesk to DirectAdmin (1)user get copy every email (1)
November 7th, 2012 |
admin |
If you receive “virtual.db: No such file or directory” error message while adding a domain in Plesk control panel, you need to create the virtual.db file and place it in the proper location. The complete error message looks like: Failed domain creation: Unable to update domain data: mailmng failed: Fatal error: plesk::mail::postfix::PostfixConfigurationError(postmap:fatal:open database /var/spool/postfix/plesk/virtual.db: No [...]
November 5th, 2012 |
admin |
If the mail handlers in Plesk are corrupt, you will be unable to remove the email account OR the domain from the Plesk control panel which results in the following error —————————————– mailmng failed: Some errors occured. See log for details 0: class.MailManager.php:242 MailManager::execWithException(string ‘smart_exec’, string ‘mailmng’, array, array, string ‘lst’) 1: class.MailManager.php:274 MailManager->callMailManager(string ‘remove-mailname’, [...]
October 14th, 2012 |
admin |
I’ve just installed this plugin, I have wp-smtp-mail plugin installed as well. The test thing on the plugin works, however I receive an error when trying to utilize the actual contact form. The error it self is: The e-mail could not be sent. Possible reason: your host may have disabled the mail() function. http://wordpress.org/extend/plugins/si-contact-form/ solution: [...]
July 14th, 2012 |
admin |
Use the following PHP code to send emails from your server: $mail_to=”destination@address.com”; $mail_subject=”Hello”; $mail_from=”yourname@yourdomain.com”; $mail_body_client=”Hello”; mail($mail_to,$mail_subject,$mail_body_client,”FROM:”. $mail_from); where, $mail_to is the receipent. $mail_from is the sender. Incoming search terms:mail_body_client (1)