| Author |  | 
      
        | hcmatt Newbie
 
  
 
 Joined: 16 July 2013
 Online Status: Offline
 Posts: 4
 | 
          Is there a way to add the IP address of the sender to email headers to help track abuse?
           | Posted: 16 July 2013 at 3:11pm | IP Logged |   |  
           | 
 |  
 | 
       
        | Back to Top |     | 
       
       
        |  | 
        | Igor AfterLogic Support
 
  
 
 Joined: 24 June 2008
 Location: United States
 Online Status: Offline
 Posts: 6168
 | 
          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.
           | Posted: 16 July 2013 at 10:02pm | IP Logged |   |  
           | 
 |  
 --
 Regards,
 Igor, AfterLogic Support
 | 
       
        | Back to Top |     | 
       
       
        |  | 
        | gdegoulet2 Newbie
 
  
 
 Joined: 12 April 2011
 Location: France
 Online Status: Offline
 Posts: 8
 | 
          very simple : edit data/settings/config.php
           | Posted: 17 February 2014 at 4:42am | IP Logged |   |  
           | 
 |  
 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: 6168
 | 
          Hey, that's an interesting approach. And actually, there's currently a plugin available for that purpose, see the plugin page.
           | Posted: 17 February 2014 at 4:46am | IP Logged |   |  
           | 
 |  
 --
 Regards,
 Igor, AfterLogic Support
 | 
       
        | Back to Top |     | 
       
       
        |  |