[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cobalt-security] POP before SMTP



This may be of some help.

The new version of Qpopper made a slight change to
its log entries -- just enough so that poprelayd (the POP-before-SMTP
perl script) can no longer find the entries it needs.

This will fix it (only tested on a Raq2):

On line 178 of /usr/local/sbin/poprelayd is the following statement:

    if ($s =~ /POP login for \"[\-\_\w]+\" at \(.+\) ([0-9\.]+)/)  {

Change it to read:

    if ($s =~ /POP login by user \"[\-\_\w]+\" at \(.+\) ([0-9\.]+)/)  {


Note the only change is from "login for" to "login by user"