Tagged Questions
7
votes
3answers
1k views
Set email headers so bounced emails go to a specific address
From our rails app we send out some system-generated emails with the 'from' address set to noreply@ourdomain.com. If these bounce they get sent back to this address by our mail server. However, what ...
2
votes
1answer
488 views
Exim overwrites “from” header when sending MIME email from PHP
I'm using the PHP Pear Mail_Mime library to send email. In my script, I set the "From:" header before sending the message. This all works fine on a server running Mac OS X, (which presumably uses ...
2
votes
4answers
4k views
How do I fix “501 Syntactically invalid HELO argument(s)”?
I'm using exim on both the sending and relay hosts, the sending host seems to offer:
HELO foo_bar.example.com
Response:
501 Syntactically invalid HELO argument(s)
1
vote
1answer
193 views
Rails and Exim for Mailer with external mail provider?
we have our mail outsourced. so everything is on an external server. in my rails app i want to send email with exim, but it doesn't work, because the sender address is on another server. Any advice on ...
1
vote
5answers
433 views
How to send email from a specific ip address?
I'm running a vps with cPanel/CentOS, And i want to dynamically choose the IP address to send an email from right inside the php code. ( i'm open to any weired ways )
Is there any way to do that? i ...
1
vote
2answers
197 views
What is the proper way to send an email *directly* using the SMTP protocol? (bypass MTA on my end)
I need to send emails DIRECLTY to the recipient's mail-server, bypassing any MTA's on my end. I know there are some great reasons to use MTAs like sendmail, etc, so I don't need advice in that ...
0
votes
0answers
32 views
PHP Mail function not working - tried all answers on here etc [closed]
I have tested the script on another server and it works fine.
When I check exim logs there are lots of rows like this,
User 0 set for local_delivery transport is on the never_users list
lots ...
0
votes
1answer
16 views
Identifying where a message was forwarded to
This is one of those hard to explain questions. I've tried my best below, hopefully it is clear what I mean.
Emails are coming in to an address (foo@example.com), and are being forwarded to another ...
0
votes
0answers
37 views
Exim: Forward Based on Recipient in bcc
Currently I am filtering incoming mails by a .forward in the following way:
if $header_to: matches "(office|info)@domain.com" then
save Maildir/.office/
endif
if $header_to: matches ...
0
votes
1answer
41 views
Cleaning bounce mail
I'm wondering whether cleaning the bounce mail is done by parsing the returned message text and creating rules (if contains bla bla bla) or by extracting a certain error code number.
Please clarify.
0
votes
1answer
45 views
Debian - invoke external script from exim on receipt of emails
I am looking fopointers on the best approach to process incoming emails to a certain vhost and to call an external script with the email data as parameters - basically to allow email to be sent to a ...
0
votes
1answer
49 views
Problems with Exim hosts_require_tls config
I'm trying to enforce TLS for out going mail to a single host. I'm no exim expert, in fact I've never even used it, it was all set up by the previous developer.
I just assumed inserting ...
0
votes
0answers
58 views
How do you set up an IMAP filter using vfilters
I am trying to set up an IMAP filter using vfilters. As an example, when I add the following filter ALL email is blocked. What am I doing wrong?
if
$header_from: is "maestrojed@somewhere.com"
then
...
0
votes
2answers
470 views
SSL connect to mail server. Trusted ssl certificate rejected by mail client
I've godaddy's 2048bit certificate for domain and 4 subdomains.
[www.site.com, mail.site.com, e.t.c.]
Standard Multiple Domain (UCC) SSL Up to 5 Domains - 1 year (annual)
That certificate works ...
0
votes
0answers
89 views
Why does Exim puts emails on hold if there are frozen messages in the queue? [closed]
Moved
Why does Exim puts emails on hold if there are frozen messages in the queue?
I've a CentOS with CPanel server working as a SMTP server, which currently uses 20 different hostnames and IP ...
0
votes
0answers
100 views
How can I distribute email deliveries between 2 or more servers? [closed]
We provide Email Marketing service through our online Application. We have about 30 customers. And each one has it's own mailling list (5k to 100k emails each).
What we really want is to distribute ...
0
votes
1answer
398 views
How could I stop PHP from returning headers when executed from commandline?
This may be a ridiculous question, but it's been bothering me for a while.
I have a mail forwarder piped to a PHP script, it receives perfectly, however I have the following error mailed back to me ...
0
votes
3answers
535 views
Catchall Router on Exim does not work
I have setup a catchall router on exim (used as last router):
catchall:
driver = redirect
domains = +local_domains
data = ${lookup{*@$domain}lsearch{/etc/aliases}}
retry_use_local_part
This ...
0
votes
1answer
385 views
Handling mail forwarding with php
I have a feature in my app that handles and parses incoming emails.
The mails come in through the usual method with exim as a .forward file:
| /path/to/php /path/to/mail/handler.php
This sends ...