Getting a copy of outgoing email

stilo

New member
Joined
Aug 18, 2008
Messages
3
Hey Guys,

Tried searching the forum but nothing came up though.

We need to view (or receive a copy) of one particular pop3 account that is sent via our SMTP server, we need this to review how our support department is answering mails.. How can we achieve that?

Thanks in advance for helping.

Stilo
 
This page may help get you started.

However remember that DirectAdmin already uses a system filter; if you replace it exim on DirectAdmin will break. So you have to add to it.

Jeff
 
You want a copy of email sent FROM your support group if you want to know what they are emailing. So pop would not be relevant.

In the /etc/system_filter.exim

Code:
if $sender_address contains example.com # this would be the domain of
                                        # your support group.

then
  unseen deliver [email protected]  # this would be the email address 
                                    # to send the copy to
 
endif

However if you did want to receive a copy of all email sent TO your support group.

Code:
if $recipients contains example.com # this would be the domain of 
                                    # your support group.

then
  unseen deliver  [email protected]  # this would be the email address 
                                     # to send the copy to
endif
 
You want a copy of email sent FROM your support group if you want to know what they are emailing. So pop would not be relevant.

In the /etc/system_filter.exim

Code:
if $sender_address contains example.com # this would be the domain of
                                        # your support group.

then
  unseen deliver [email protected]  # this would be the email address 
                                    # to send the copy to
 
endif

However if you did want to receive a copy of all email sent TO your support group.

Code:
if $recipients contains example.com # this would be the domain of 
                                    # your support group.

then
  unseen deliver  [email protected]  # this would be the email address 
                                     # to send the copy to
endif

Hi,

What if i would like to forward outgoing and incoming mail to more than one email address?

Thanks,

David
 
Yes What if i would like to forward outgoing and incoming mail to more than one email address?
and also how to compine both rules?
 
This thread has been dea for a long time. I suggest that you might want to check on the exim-users list for some suggestions on how to do this if my link above isn't helpful enough for you.

Jeff
 
Back
Top