Posts Tagged ‘mail’
Tuesday, March 1st, 2011
To send a mail from PHP encoded as UTF-8 is fairly easy to do by modifying the headers.
//Sender with special chars (UTF-8) encoded
mail('mail@example.com', '=?UTF-8?B?'.base64_encode($subjectString).'?=', $messageString, "MIME-Version: 1.0\r\nContent-type: text/plain; charset=UTF-8\r\n");
//Sender not UTF-8 encoded
mail('mail@example.com', 'sender@mail.com', $messageString, "MIME-Version: 1.0\r\nContent-type: text/plain; charset=UTF-8\r\n");
Tags: mail, php, php5, utf-8
Posted in PHP5 | No Comments »
Tuesday, September 28th, 2010
On *nix environments it is possible to forward the mail to one account to another user (or another email address if external mail is supported).
This is done by adding the recipient in a file called .forward in the home directory.
Example To simply forward to another address:
user@server$ echo recipient@mail.com > ~/.forward
user@server$ chmod go-w ~/.forward
In order to forward to several addresses coma (,) is used as a delimiter between the different recipients.
Example To forward to two addresses at the same time:
user@server$ echo recipient1@mail.com,recipient2@mail.com > ~/.forward
user@server$ chmod go-w ~/.forward
Tags: .forward, email, mail
Posted in linux, unix | No Comments »
Wednesday, August 18th, 2010
Sometimes it is nice to send a log or some other file as a email to someone (or a part of a file)
cat myfile.txt | mail -s 'SUBJECT' example@mail.com;
Change myfile.txt, SUBJECT and example@mail.com to something useful.
It is also possible to send the output of a command to someone
ps -ef|mail -s 'SUBJET' example@mail.com;
Tags: console, mail
Posted in linux, unix | No Comments »
Friday, February 26th, 2010
To delete one message from the exim queue
To find the ids of all qued mails
If you wish to delete all the messages to a specific email recipient.
exiqgrep -i -r '<mail@example.com>' | xargs exim -Mrm
Of if you wish to delete all messages that were sent from a specific email address.
exiqgrep -i -f '<mail@example.com>' | xargs exim -Mrm
Tags: exim4, mail, mailq, mailserver
Posted in exim4 | 1 Comment »
Friday, February 5th, 2010
To re-configure exim4 on a Debian system just run
“$ dpkg-reconfigure exim4-config”
This will start the configuration process and you will be guided trough the configuration process.
Tags: debian, exim4, mail, mailserver
Posted in debian, exim4, ubuntu | No Comments »
Friday, January 29th, 2010
A fairly common issue on the Internet is that some routers can’t handle window scaling.
This will might give some odd messages to email servers (such as not being able to send mails over a certain size to one receiving mail server)
On option is to turn off window scaling by editing sysctl.conf and adding the following lines
# Uncomment to turn off window scaling (most usefull for linux MTA)
net.ipv4.tcp_window_scaling = 0
A warning about doing this; In the long run throughput will not be optimal on this server, but sending mails should work better (so best used on a dedicated mail server).
Tags: kernel, mail, mailserver
Posted in linux | No Comments »
Monday, January 18th, 2010
To send email to several recipients use
name <name@example.com>, name2 <name2@example.com>
the part inside the brackes (< & >) is the adress, the part before the < is the name shown as the recipient. The separation char for several addresses is “,”
Tags: mail, sendmail
Posted in sendmail | No Comments »
Wednesday, December 9th, 2009
Ran into this error today on a server. Some mails got through but some was not getting through.
Check that /etc/hosts has a FQDN (fully qualified domain name).
Also check the size of the mails being sent, in my case the issue was that mail was to large for the receiving server thus this error message was produced at the sender.
Tags: DSN, mail, mailserver
Posted in sendmail | No Comments »
Monday, November 30th, 2009
sendmail expects to the machine to have a FQDN (fully qualified domain name).
If it does not have that (type “hostname” to check what name the machine has) sendmail will complain about this and take a loot of extra time trying to find it.
To use a FQDN edit “/etc/hosts” and change [something] to [something.yourdomain.com] and this will go away. Updating “/etc/hostname” at the same time might be a good idea; don’t forget to run “/bin/hostname -F /etc/hostname” after updating /etc/hostname.
Tags: DNS, fqdn, mail, mailserver
Posted in linux, sendmail, unix | No Comments »