Author |
|
hcmatt Newbie
Joined: 16 July 2013
Online Status: Offline Posts: 4
|
Posted: 16 July 2013 at 3:11pm | IP Logged
|
|
|
Is there a way to add the IP address of the sender to email headers to help track abuse?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 16 July 2013 at 10:02pm | IP Logged
|
|
|
There's no such feature currently available out-of-box. Since WebMail Lite is an opensource product, you're allowed to make any modifications you require of course.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
gdegoulet2 Newbie
Joined: 12 April 2011 Location: France
Online Status: Offline Posts: 8
|
Posted: 17 February 2014 at 4:42am | IP Logged
|
|
|
very simple : edit data/settings/config.php
this php script return a table (key => value)
just add something like this :
'webmail.xmailer-value' => "REMOTE_ADDR=".$_SERVER['REMOTE_ADDR']." HTTP_X_FORWARDED_FOR=".$_SERVER['HTTP_X_FORWARDED_FOR'],
so, you will have this string a X-Mailer header :
X-Mailer: REMOTE_ADDR=xx.xx.xx.xx HTTP_X_FORWARDED_FOR=
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 17 February 2014 at 4:46am | IP Logged
|
|
|
Hey, that's an interesting approach. And actually, there's currently a plugin available for that purpose, see the plugin page.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|