RE: [qmailtoaster] invalid sender address format

2007-12-19 Thread Tim Mancour
Instead of editing the source code, you can just add SENDER_NOCHECK=1 to
your tcp.smtp file. This will disable the sender checking performed by
chkuser. 

If you really want to build-in your changes then make sure that the macro
CHKUSER_ALLOW_SENDER_CHAR_6 is reflected in the source code. You can search
for CHKUSER_ALLOW_SENDER_CHAR_ in chkuser.c and add the appropriate lines
during the 5 minute editing step.


-Original Message-
From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 18, 2007 7:51 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] invalid sender address format

OK, that was a bit scary.  After I followed Lucian's instructions, I got a
libc.so.6 out of memory error.  I found where to up the softlimit and fixed
that.

Only problem is, it's still blocking the  character in the email sender
address.  The changed chkuser_settings.h is now in the /var/qmail/doc folder
and I verified my changes are in there.  I added the following 2 lines to
the appropriate areas before recompiling.
#define CHKUSER_ALLOW_SENDER_CHAR_6 ''
#define CHKUSER_ALLOW_RCPT_CHAR_6 ''

Does anyone have an idea what I'm missing??

-Original Message-
From: Lucian Cristian [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 18, 2007 4:16 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] invalid sender address format

Phil Leinhauser wrote:
 I see it looks like it's the chkuser filter not liking the  symbol in 
 the
sender address.  So, I opened the chkuser_settings.h file and found the set
of instructions for the characters allowed and added the following:

 #define CHKUSER_ALLOW_RCPT_CHAR_6 ''

 But what do I need to do to make this active now?  Can I just restart 
 QMT
or do I need to do something else?  I see references to recompiling CHKUSER
but I'm stumped ho to do this.

 Thanks,
 Phil


 -Original message-
 From: Phil Leinhauser [EMAIL PROTECTED]
 Date: Tue, 18 Dec 2007 14:45:19 -0500
 To: qmailtoaster-list@qmailtoaster.com
 Subject: [qmailtoaster] invalid sender address format

   
 I have a customer trying to get announcement emails from one of his
suppliers.  The Emails are being bounced back to the sender and the SMTP log
on my end shows invalid sender address format.  The first part of the
sender address is CHVACRApplicationEngineering-RACIWII'm not sure what
the invalid part is.  Is it the  or the - or the whole length?

 Anything I can do to allow these?  I already added the domain to the
whitelist before I tracked it to the address itself.

 Thanks,
 Phil

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: 
 [EMAIL PROTECTED]
 For additional commands, e-mail: 
 [EMAIL PROTECTED]


 

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: 
 [EMAIL PROTECTED]

   

some older example

The easy way:

  rpm -Uvh qmail-toaster*.src.rpm

  cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)

  edit qmail-toaster.spec

  find 'sleep 5'  (should be line 606)

  change  5 to 300 (5 seconds to 300 seconds)

  rpmbuild -bb --with cnt40 qmail-toaster.spec

  When the build process pauses, make your changes. You have 5 minutes.

  edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish

  Save your changes and wait for the 300 seconds to expire and
  watch it build.

  cd ../RPMS/i386/

  qmailctl stop

  rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm

  qmailctl start

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [qmailtoaster] invalid sender address format

2007-12-19 Thread Phil Leinhauser
A, That might be it.  I didn't do anything in the chkuser.c file.  I only 
modified the chkuser_settings.h file.  I'll have another try at it tonight.

Thanks for the info Tim!!

Phil


-Original message-
From: Tim Mancour [EMAIL PROTECTED]
Date: Wed, 19 Dec 2007 12:15:03 -0500
To: qmailtoaster-list@qmailtoaster.com
Subject: RE: [qmailtoaster] invalid sender address format

 Instead of editing the source code, you can just add SENDER_NOCHECK=1 to
 your tcp.smtp file. This will disable the sender checking performed by
 chkuser. 
 
 If you really want to build-in your changes then make sure that the macro
 CHKUSER_ALLOW_SENDER_CHAR_6 is reflected in the source code. You can search
 for CHKUSER_ALLOW_SENDER_CHAR_ in chkuser.c and add the appropriate lines
 during the 5 minute editing step.
 
 
 -Original Message-
 From: Phil Leinhauser [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, December 18, 2007 7:51 PM
 To: qmailtoaster-list@qmailtoaster.com
 Subject: RE: [qmailtoaster] invalid sender address format
 
 OK, that was a bit scary.  After I followed Lucian's instructions, I got a
 libc.so.6 out of memory error.  I found where to up the softlimit and fixed
 that.
 
 Only problem is, it's still blocking the  character in the email sender
 address.  The changed chkuser_settings.h is now in the /var/qmail/doc folder
 and I verified my changes are in there.  I added the following 2 lines to
 the appropriate areas before recompiling.
 #define CHKUSER_ALLOW_SENDER_CHAR_6 ''
 #define CHKUSER_ALLOW_RCPT_CHAR_6 ''
 
 Does anyone have an idea what I'm missing??
 
 -Original Message-
 From: Lucian Cristian [mailto:[EMAIL PROTECTED]
 Sent: Tuesday, December 18, 2007 4:16 PM
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] invalid sender address format
 
 Phil Leinhauser wrote:
  I see it looks like it's the chkuser filter not liking the  symbol in 
  the
 sender address.  So, I opened the chkuser_settings.h file and found the set
 of instructions for the characters allowed and added the following:
 
  #define CHKUSER_ALLOW_RCPT_CHAR_6 ''
 
  But what do I need to do to make this active now?  Can I just restart 
  QMT
 or do I need to do something else?  I see references to recompiling CHKUSER
 but I'm stumped ho to do this.
 
  Thanks,
  Phil
 
 
  -Original message-
  From: Phil Leinhauser [EMAIL PROTECTED]
  Date: Tue, 18 Dec 2007 14:45:19 -0500
  To: qmailtoaster-list@qmailtoaster.com
  Subject: [qmailtoaster] invalid sender address format
 

  I have a customer trying to get announcement emails from one of his
 suppliers.  The Emails are being bounced back to the sender and the SMTP log
 on my end shows invalid sender address format.  The first part of the
 sender address is CHVACRApplicationEngineering-RACIWII'm not sure what
 the invalid part is.  Is it the  or the - or the whole length?
 
  Anything I can do to allow these?  I already added the domain to the
 whitelist before I tracked it to the address itself.
 
  Thanks,
  Phil
 
  -
   QmailToaster hosted by: VR Hosted http://www.vr.org
  -
  To unsubscribe, e-mail: 
  [EMAIL PROTECTED]
  For additional commands, e-mail: 
  [EMAIL PROTECTED]
 
 
  
 
  -
   QmailToaster hosted by: VR Hosted http://www.vr.org
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: 
  [EMAIL PROTECTED]
 

 
 some older example
 
 The easy way:
 
   rpm -Uvh qmail-toaster*.src.rpm
 
   cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)
 
   edit qmail-toaster.spec
 
   find 'sleep 5'  (should be line 606)
 
   change  5 to 300 (5 seconds to 300 seconds)
 
   rpmbuild -bb --with cnt40 qmail-toaster.spec
 
   When the build process pauses, make your changes. You have 5 minutes.
 
   edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish
 
   Save your changes and wait for the 300 seconds to expire and
   watch it build.
 
   cd ../RPMS/i386/
 
   qmailctl stop
 
   rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm
 
   qmailctl start
 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED

Re: [qmailtoaster] invalid sender address format

2007-12-19 Thread Eric Shubes
The chkuser patch is only written for 5 such characters. Instead of adding
#6, change one of the first 5 to '', then rebuild and reinstall.

Phil Leinhauser wrote:
 OK, that was a bit scary.  After I followed Lucian's instructions, I got a
 libc.so.6 out of memory error.  I found where to up the softlimit and fixed
 that.
 
 Only problem is, it's still blocking the  character in the email sender
 address.  The changed chkuser_settings.h is now in the /var/qmail/doc folder
 and I verified my changes are in there.  I added the following 2 lines to
 the appropriate areas before recompiling.
 #define CHKUSER_ALLOW_SENDER_CHAR_6 ''
 #define CHKUSER_ALLOW_RCPT_CHAR_6 ''
 
 Does anyone have an idea what I'm missing??
 
 -Original Message-
 From: Lucian Cristian [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, December 18, 2007 4:16 PM
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] invalid sender address format
 
 Phil Leinhauser wrote:
 I see it looks like it's the chkuser filter not liking the  symbol in the
 sender address.  So, I opened the chkuser_settings.h file and found the set
 of instructions for the characters allowed and added the following:
 #define CHKUSER_ALLOW_RCPT_CHAR_6 ''

 But what do I need to do to make this active now?  Can I just restart QMT
 or do I need to do something else?  I see references to recompiling CHKUSER
 but I'm stumped ho to do this.
 Thanks,
 Phil


 -Original message-
 From: Phil Leinhauser [EMAIL PROTECTED]
 Date: Tue, 18 Dec 2007 14:45:19 -0500
 To: qmailtoaster-list@qmailtoaster.com
 Subject: [qmailtoaster] invalid sender address format

   
 I have a customer trying to get announcement emails from one of his
 suppliers.  The Emails are being bounced back to the sender and the SMTP log
 on my end shows invalid sender address format.  The first part of the
 sender address is CHVACRApplicationEngineering-RACIWII'm not sure what
 the invalid part is.  Is it the  or the - or the whole length?
 Anything I can do to allow these?  I already added the domain to the
 whitelist before I tracked it to the address itself.
 Thanks,
 Phil

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

   
 
 some older example
 
 The easy way:
 
   rpm -Uvh qmail-toaster*.src.rpm
 
   cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)
 
   edit qmail-toaster.spec
 
   find 'sleep 5'  (should be line 606)
 
   change  5 to 300 (5 seconds to 300 seconds)
 
   rpmbuild -bb --with cnt40 qmail-toaster.spec
 
   When the build process pauses, make your changes. You have 5 minutes.
 
   edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish
 
   Save your changes and wait for the 300 seconds to expire and
   watch it build.
 
   cd ../RPMS/i386/
 
   qmailctl stop
 
   rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm
 
   qmailctl start
 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 
 
 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 


-- 
-Eric 'shubes'

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2007-12-19 Thread Phil Leinhauser
OK, I wondered if there was some sort of limit.  I did see that #3 was 
remarked.  I'll use that.  Do I need to modify the chkuser_settings.h or the 
chkuser.c during the 5 minute pause?  I haven't even looked into the chkuser.c 
yet so I don't know if there is anything in it I need.

Thanks,
Phil


-Original message-
From: Eric \Shubes\ [EMAIL PROTECTED]
Date: Wed, 19 Dec 2007 15:07:30 -0500
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] invalid sender address format

 The chkuser patch is only written for 5 such characters. Instead of adding
 #6, change one of the first 5 to '', then rebuild and reinstall.
 
 Phil Leinhauser wrote:
  OK, that was a bit scary.  After I followed Lucian's instructions, I got a
  libc.so.6 out of memory error.  I found where to up the softlimit and fixed
  that.
  
  Only problem is, it's still blocking the  character in the email sender
  address.  The changed chkuser_settings.h is now in the /var/qmail/doc folder
  and I verified my changes are in there.  I added the following 2 lines to
  the appropriate areas before recompiling.
  #define CHKUSER_ALLOW_SENDER_CHAR_6 ''
  #define CHKUSER_ALLOW_RCPT_CHAR_6 ''
  
  Does anyone have an idea what I'm missing??
  
  -Original Message-
  From: Lucian Cristian [mailto:[EMAIL PROTECTED] 
  Sent: Tuesday, December 18, 2007 4:16 PM
  To: qmailtoaster-list@qmailtoaster.com
  Subject: Re: [qmailtoaster] invalid sender address format
  
  Phil Leinhauser wrote:
  I see it looks like it's the chkuser filter not liking the  symbol in the
  sender address.  So, I opened the chkuser_settings.h file and found the set
  of instructions for the characters allowed and added the following:
  #define CHKUSER_ALLOW_RCPT_CHAR_6 ''
 
  But what do I need to do to make this active now?  Can I just restart QMT
  or do I need to do something else?  I see references to recompiling CHKUSER
  but I'm stumped ho to do this.
  Thanks,
  Phil
 
 
  -Original message-
  From: Phil Leinhauser [EMAIL PROTECTED]
  Date: Tue, 18 Dec 2007 14:45:19 -0500
  To: qmailtoaster-list@qmailtoaster.com
  Subject: [qmailtoaster] invalid sender address format
 

  I have a customer trying to get announcement emails from one of his
  suppliers.  The Emails are being bounced back to the sender and the SMTP log
  on my end shows invalid sender address format.  The first part of the
  sender address is CHVACRApplicationEngineering-RACIWII'm not sure what
  the invalid part is.  Is it the  or the - or the whole length?
  Anything I can do to allow these?  I already added the domain to the
  whitelist before I tracked it to the address itself.
  Thanks,
  Phil
 
  -
   QmailToaster hosted by: VR Hosted http://www.vr.org
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 
 
  
  -
   QmailToaster hosted by: VR Hosted http://www.vr.org
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 

  
  some older example
  
  The easy way:
  
rpm -Uvh qmail-toaster*.src.rpm
  
cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)
  
edit qmail-toaster.spec
  
find 'sleep 5'  (should be line 606)
  
change  5 to 300 (5 seconds to 300 seconds)
  
rpmbuild -bb --with cnt40 qmail-toaster.spec
  
When the build process pauses, make your changes. You have 5 minutes.
  
edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish
  
Save your changes and wait for the 300 seconds to expire and
watch it build.
  
cd ../RPMS/i386/
  
qmailctl stop
  
rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm
  
qmailctl start
  
  -
   QmailToaster hosted by: VR Hosted http://www.vr.org
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
  
  
  
  -
   QmailToaster hosted by: VR Hosted http://www.vr.org
  -
  To unsubscribe, e-mail: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
 -- 
 -Eric 'shubes'
 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED

Re: [qmailtoaster] invalid sender address format

2007-12-19 Thread Eric Shubes
chkuser.h is all you need to change.

Phil Leinhauser wrote:
 OK, I wondered if there was some sort of limit.  I did see that #3 was 
 remarked.  I'll use that.  Do I need to modify the chkuser_settings.h or the 
 chkuser.c during the 5 minute pause?  I haven't even looked into the 
 chkuser.c yet so I don't know if there is anything in it I need.
 
 Thanks,
 Phil
 
 
 -Original message-
 From: Eric \Shubes\ [EMAIL PROTECTED]
 Date: Wed, 19 Dec 2007 15:07:30 -0500
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] invalid sender address format
 
 The chkuser patch is only written for 5 such characters. Instead of adding
 #6, change one of the first 5 to '', then rebuild and reinstall.

 Phil Leinhauser wrote:
 OK, that was a bit scary.  After I followed Lucian's instructions, I got a
 libc.so.6 out of memory error.  I found where to up the softlimit and fixed
 that.

 Only problem is, it's still blocking the  character in the email sender
 address.  The changed chkuser_settings.h is now in the /var/qmail/doc folder
 and I verified my changes are in there.  I added the following 2 lines to
 the appropriate areas before recompiling.
 #define CHKUSER_ALLOW_SENDER_CHAR_6 ''
 #define CHKUSER_ALLOW_RCPT_CHAR_6 ''

 Does anyone have an idea what I'm missing??

 -Original Message-
 From: Lucian Cristian [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, December 18, 2007 4:16 PM
 To: qmailtoaster-list@qmailtoaster.com
 Subject: Re: [qmailtoaster] invalid sender address format

 Phil Leinhauser wrote:
 I see it looks like it's the chkuser filter not liking the  symbol in the
 sender address.  So, I opened the chkuser_settings.h file and found the set
 of instructions for the characters allowed and added the following:
 #define CHKUSER_ALLOW_RCPT_CHAR_6 ''

 But what do I need to do to make this active now?  Can I just restart QMT
 or do I need to do something else?  I see references to recompiling CHKUSER
 but I'm stumped ho to do this.
 Thanks,
 Phil


 -Original message-
 From: Phil Leinhauser [EMAIL PROTECTED]
 Date: Tue, 18 Dec 2007 14:45:19 -0500
 To: qmailtoaster-list@qmailtoaster.com
 Subject: [qmailtoaster] invalid sender address format

   
 I have a customer trying to get announcement emails from one of his
 suppliers.  The Emails are being bounced back to the sender and the SMTP log
 on my end shows invalid sender address format.  The first part of the
 sender address is CHVACRApplicationEngineering-RACIWII'm not sure what
 the invalid part is.  Is it the  or the - or the whole length?
 Anything I can do to allow these?  I already added the domain to the
 whitelist before I tracked it to the address itself.
 Thanks,
 Phil

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

   
 some older example

 The easy way:

   rpm -Uvh qmail-toaster*.src.rpm

   cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)

   edit qmail-toaster.spec

   find 'sleep 5'  (should be line 606)

   change  5 to 300 (5 seconds to 300 seconds)

   rpmbuild -bb --with cnt40 qmail-toaster.spec

   When the build process pauses, make your changes. You have 5 minutes.

   edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish

   Save your changes and wait for the 300 seconds to expire and
   watch it build.

   cd ../RPMS/i386/

   qmailctl stop

   rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm

   qmailctl start

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -- 
 -Eric 'shubes'

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 
 -
  QmailToaster hosted by: VR Hosted http

[qmailtoaster] invalid sender address format

2007-12-18 Thread Phil Leinhauser
I have a customer trying to get announcement emails from one of his suppliers.  
The Emails are being bounced back to the sender and the SMTP log on my end 
shows invalid sender address format.  The first part of the sender address is 
CHVACRApplicationEngineering-RACIWII'm not sure what the invalid part is.  
Is it the  or the - or the whole length?

Anything I can do to allow these?  I already added the domain to the whitelist 
before I tracked it to the address itself.

Thanks,
Phil

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2007-12-18 Thread Phil Leinhauser
I see it looks like it's the chkuser filter not liking the  symbol in the 
sender address.  So, I opened the chkuser_settings.h file and found the set of 
instructions for the characters allowed and added the following:

#define CHKUSER_ALLOW_RCPT_CHAR_6 ''

But what do I need to do to make this active now?  Can I just restart QMT or do 
I need to do something else?  I see references to recompiling CHKUSER but I'm 
stumped ho to do this.

Thanks,
Phil


-Original message-
From: Phil Leinhauser [EMAIL PROTECTED]
Date: Tue, 18 Dec 2007 14:45:19 -0500
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] invalid sender address format

 I have a customer trying to get announcement emails from one of his 
 suppliers.  The Emails are being bounced back to the sender and the SMTP log 
 on my end shows invalid sender address format.  The first part of the 
 sender address is CHVACRApplicationEngineering-RACIWII'm not sure what 
 the invalid part is.  Is it the  or the - or the whole length?
 
 Anything I can do to allow these?  I already added the domain to the 
 whitelist before I tracked it to the address itself.
 
 Thanks,
 Phil
 
 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]
 
 

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2007-12-18 Thread Lucian Cristian

Phil Leinhauser wrote:

I see it looks like it's the chkuser filter not liking the  symbol in the 
sender address.  So, I opened the chkuser_settings.h file and found the set of 
instructions for the characters allowed and added the following:

#define CHKUSER_ALLOW_RCPT_CHAR_6 ''

But what do I need to do to make this active now?  Can I just restart QMT or do 
I need to do something else?  I see references to recompiling CHKUSER but I'm 
stumped ho to do this.

Thanks,
Phil


-Original message-
From: Phil Leinhauser [EMAIL PROTECTED]
Date: Tue, 18 Dec 2007 14:45:19 -0500
To: qmailtoaster-list@qmailtoaster.com
Subject: [qmailtoaster] invalid sender address format

  

I have a customer trying to get announcement emails from one of his suppliers.  The Emails are 
being bounced back to the sender and the SMTP log on my end shows invalid sender address 
format.  The first part of the sender address is CHVACRApplicationEngineering-RACIWI   
 I'm not sure what the invalid part is.  Is it the  or the - or the whole length?

Anything I can do to allow these?  I already added the domain to the whitelist 
before I tracked it to the address itself.

Thanks,
Phil

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]





-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

  


some older example

The easy way:

 rpm -Uvh qmail-toaster*.src.rpm

 cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)

 edit qmail-toaster.spec

 find 'sleep 5'  (should be line 606)

 change  5 to 300 (5 seconds to 300 seconds)

 rpmbuild -bb --with cnt40 qmail-toaster.spec

 When the build process pauses, make your changes. You have 5 minutes.

 edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish

 Save your changes and wait for the 300 seconds to expire and
 watch it build.

 cd ../RPMS/i386/

 qmailctl stop

 rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm

 qmailctl start

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [qmailtoaster] invalid sender address format

2007-12-18 Thread Phil Leinhauser
OK, that was a bit scary.  After I followed Lucian's instructions, I got a
libc.so.6 out of memory error.  I found where to up the softlimit and fixed
that.

Only problem is, it's still blocking the  character in the email sender
address.  The changed chkuser_settings.h is now in the /var/qmail/doc folder
and I verified my changes are in there.  I added the following 2 lines to
the appropriate areas before recompiling.
#define CHKUSER_ALLOW_SENDER_CHAR_6 ''
#define CHKUSER_ALLOW_RCPT_CHAR_6 ''

Does anyone have an idea what I'm missing??

-Original Message-
From: Lucian Cristian [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, December 18, 2007 4:16 PM
To: qmailtoaster-list@qmailtoaster.com
Subject: Re: [qmailtoaster] invalid sender address format

Phil Leinhauser wrote:
 I see it looks like it's the chkuser filter not liking the  symbol in the
sender address.  So, I opened the chkuser_settings.h file and found the set
of instructions for the characters allowed and added the following:

 #define CHKUSER_ALLOW_RCPT_CHAR_6 ''

 But what do I need to do to make this active now?  Can I just restart QMT
or do I need to do something else?  I see references to recompiling CHKUSER
but I'm stumped ho to do this.

 Thanks,
 Phil


 -Original message-
 From: Phil Leinhauser [EMAIL PROTECTED]
 Date: Tue, 18 Dec 2007 14:45:19 -0500
 To: qmailtoaster-list@qmailtoaster.com
 Subject: [qmailtoaster] invalid sender address format

   
 I have a customer trying to get announcement emails from one of his
suppliers.  The Emails are being bounced back to the sender and the SMTP log
on my end shows invalid sender address format.  The first part of the
sender address is CHVACRApplicationEngineering-RACIWII'm not sure what
the invalid part is.  Is it the  or the - or the whole length?

 Anything I can do to allow these?  I already added the domain to the
whitelist before I tracked it to the address itself.

 Thanks,
 Phil

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

   

some older example

The easy way:

  rpm -Uvh qmail-toaster*.src.rpm

  cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)

  edit qmail-toaster.spec

  find 'sleep 5'  (should be line 606)

  change  5 to 300 (5 seconds to 300 seconds)

  rpmbuild -bb --with cnt40 qmail-toaster.spec

  When the build process pauses, make your changes. You have 5 minutes.

  edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish

  Save your changes and wait for the 300 seconds to expire and
  watch it build.

  cd ../RPMS/i386/

  qmailctl stop

  rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm

  qmailctl start

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2006-08-31 Thread George Sweetnam
Have them send you a test email and look at the header.  It's likely the 
sender has their emailaddress bufar'd.  You can test yourself by setting up 
a test email box on that domain or another and sending yourself a message 
from offnetwork (it's what I do).

George.

- Original Message - 
From: Eric Shubes [EMAIL PROTECTED]
To: qmailtoaster-list@qmailtoaster.com
Sent: Wednesday, August 30, 2006 5:20 PM
Subject: Re: [qmailtoaster] invalid sender address format


[EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
 Hello,

 I am running qmail toaster for a company i work for and am running
 into
 the following random problem.

 ./smtp/@400044ef7dda2ab1dcec.s:@400044ef35420e6d36e4 CHKUSER
 rejected sender: from [EMAIL PROTECTED]@domain.com:: remote
 relay01.roc.ny.frontiernet.net:unknown:66.133.182.164  rcpt  :
 invalid
 sender address format


 any ideas to why this might happen? Ive taken note that for some
 reason
 qmail attaches the domain twice in this output from my smtp log file.


 Qmail doesn't attach the domain twice, it's the sender who is doing
 that.
 That's why it's an invalid format - two '@' characters.

 I'm guessing that the sender has '[EMAIL PROTECTED]' in their account
 name,
 where they should only have 'sender'.

 --
 -Eric 'shubes'

 So does this mean that the send would be representing thmeselves as
  John Doe [EMAIL PROTECTED]
 I don't know what you mean.

 or is there a way to make chkusr accept it anyways?
 There is, but I don't think you want to go there.

 every since i upgraded i have had problems with this.
 I don't think it's a problem. Do you know who this particular email is
 coming from? If so, please elaborate. If not, let it go.

 andy

 --
 -Eric 'shubes'

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


 The email is comming from frontiernet.net  It is someone trying to reply
 to an email a customer of ours sent from the domain
 galesburganimalhospital.com which we host email for the customer


 andy


Ok. It's still my guess that the client software (sender's host) sending via
  frontiernet.net is configured improperly. Can the person who's sending it
verify their configuration with frontiernet.net? Can you help them somehow?

I just don't see how it could be a toaster problem. The toaster is doing
what it's supposed to do.

-- 
-Eric 'shubes'

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] invalid sender address format

2006-08-30 Thread toaster
Hello,

I am running qmail toaster for a company i work for and am running into
the following random problem.

./smtp/@400044ef7dda2ab1dcec.s:@400044ef35420e6d36e4 CHKUSER
rejected sender: from [EMAIL PROTECTED]@domain.com:: remote
relay01.roc.ny.frontiernet.net:unknown:66.133.182.164  rcpt  : invalid
sender address format


any ideas to why this might happen? Ive taken note that for some reason
qmail attaches the domain twice in this output from my smtp log file.

Here is the list of qmail toaster packages i have installed

[EMAIL PROTECTED] qmail]# rpm -qa | grep toaster
daemontools-toaster-0.76-1.3.1
autorespond-toaster-2.0.4-1.3.1
isoqlog-toaster-2.1-1.3.1
libdomainkeys-toaster-0.68-1.3.1
ezmlm-cgi-toaster-0.53.324-1.3.1
spamassassin-toaster-3.1.3-1.3.1
courier-authlib-toaster-0.58-1.3.1
ezmlm-toaster-0.53.324-1.3.1
maildrop-toaster-2.0.2-1.3.1
squirrelmail-toaster-1.4.7-1.3.2
simscan-toaster-1.2-1.3.1
ucspi-tcp-toaster-0.88-1.3.1
qmail-pop3d-toaster-1.03-1.3.5
control-panel-toaster-0.5-1.3.1
qmailmrtg-toaster-4.2-1.3.1
vqadmin-toaster-2.3.4-1.3.1
ripmime-toaster-1.4.0.6-1.3.1
qmail-toaster-1.03-1.3.5
qmailadmin-toaster-1.2.9-1.3.1
clamav-toaster-0.88.3-1.3.2
courier-imap-toaster-4.1.1-1.3.2
maildrop-toaster-devel-2.0.2-1.3.1
vpopmail-toaster-5.4.13-1.3.2


Any help is greatly apprecated.

Thanks,

Andy Rowe



-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2006-08-30 Thread Eric \Shubes\

[EMAIL PROTECTED] wrote:

Hello,

I am running qmail toaster for a company i work for and am running into
the following random problem.

./smtp/@400044ef7dda2ab1dcec.s:@400044ef35420e6d36e4 CHKUSER
rejected sender: from [EMAIL PROTECTED]@domain.com:: remote
relay01.roc.ny.frontiernet.net:unknown:66.133.182.164  rcpt  : invalid
sender address format


any ideas to why this might happen? Ive taken note that for some reason
qmail attaches the domain twice in this output from my smtp log file.




Qmail doesn't attach the domain twice, it's the sender who is doing that. 
That's why it's an invalid format - two '@' characters.


I'm guessing that the sender has '[EMAIL PROTECTED]' in their account name, 
where they should only have 'sender'.


--
-Eric 'shubes'

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2006-08-30 Thread toaster
 [EMAIL PROTECTED] wrote:
 Hello,

 I am running qmail toaster for a company i work for and am running into
 the following random problem.

 ./smtp/@400044ef7dda2ab1dcec.s:@400044ef35420e6d36e4 CHKUSER
 rejected sender: from [EMAIL PROTECTED]@domain.com:: remote
 relay01.roc.ny.frontiernet.net:unknown:66.133.182.164  rcpt  :
 invalid
 sender address format


 any ideas to why this might happen? Ive taken note that for some reason
 qmail attaches the domain twice in this output from my smtp log file.



 Qmail doesn't attach the domain twice, it's the sender who is doing that.
 That's why it's an invalid format - two '@' characters.

 I'm guessing that the sender has '[EMAIL PROTECTED]' in their account
 name,
 where they should only have 'sender'.

 --
 -Eric 'shubes'

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


So does this mean that the send would be representing thmeselves as
 John Doe [EMAIL PROTECTED]

or is there a way to make chkusr accept it anyways?

every since i upgraded i have had problems with this.


andy


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2006-08-30 Thread Eric \Shubes\

[EMAIL PROTECTED] wrote:

[EMAIL PROTECTED] wrote:

Hello,

I am running qmail toaster for a company i work for and am running into
the following random problem.

./smtp/@400044ef7dda2ab1dcec.s:@400044ef35420e6d36e4 CHKUSER
rejected sender: from [EMAIL PROTECTED]@domain.com:: remote
relay01.roc.ny.frontiernet.net:unknown:66.133.182.164  rcpt  :
invalid
sender address format


any ideas to why this might happen? Ive taken note that for some reason
qmail attaches the domain twice in this output from my smtp log file.



Qmail doesn't attach the domain twice, it's the sender who is doing that.
That's why it's an invalid format - two '@' characters.

I'm guessing that the sender has '[EMAIL PROTECTED]' in their account
name,
where they should only have 'sender'.

--
-Eric 'shubes'


So does this mean that the send would be representing thmeselves as
 John Doe [EMAIL PROTECTED]


I don't know what you mean.


or is there a way to make chkusr accept it anyways?


There is, but I don't think you want to go there.


every since i upgraded i have had problems with this.


I don't think it's a problem. Do you know who this particular email is 
coming from? If so, please elaborate. If not, let it go.



andy



--
-Eric 'shubes'

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2006-08-30 Thread toaster
 [EMAIL PROTECTED] wrote:
 [EMAIL PROTECTED] wrote:
 Hello,

 I am running qmail toaster for a company i work for and am running
 into
 the following random problem.

 ./smtp/@400044ef7dda2ab1dcec.s:@400044ef35420e6d36e4 CHKUSER
 rejected sender: from [EMAIL PROTECTED]@domain.com:: remote
 relay01.roc.ny.frontiernet.net:unknown:66.133.182.164  rcpt  :
 invalid
 sender address format


 any ideas to why this might happen? Ive taken note that for some
 reason
 qmail attaches the domain twice in this output from my smtp log file.


 Qmail doesn't attach the domain twice, it's the sender who is doing
 that.
 That's why it's an invalid format - two '@' characters.

 I'm guessing that the sender has '[EMAIL PROTECTED]' in their account
 name,
 where they should only have 'sender'.

 --
 -Eric 'shubes'

 So does this mean that the send would be representing thmeselves as
  John Doe [EMAIL PROTECTED]

 I don't know what you mean.

 or is there a way to make chkusr accept it anyways?

 There is, but I don't think you want to go there.

 every since i upgraded i have had problems with this.

 I don't think it's a problem. Do you know who this particular email is
 coming from? If so, please elaborate. If not, let it go.

 andy


 --
 -Eric 'shubes'

 -
  QmailToaster hosted by: VR Hosted http://www.vr.org
 -
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]


The email is comming from frontiernet.net  It is someone trying to reply
to an email a customer of ours sent from the domain
galesburganimalhospital.com which we host email for the customer


andy


-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2006-08-30 Thread Eric \Shubes\

[EMAIL PROTECTED] wrote:

[EMAIL PROTECTED] wrote:

[EMAIL PROTECTED] wrote:

Hello,

I am running qmail toaster for a company i work for and am running
into
the following random problem.

./smtp/@400044ef7dda2ab1dcec.s:@400044ef35420e6d36e4 CHKUSER
rejected sender: from [EMAIL PROTECTED]@domain.com:: remote
relay01.roc.ny.frontiernet.net:unknown:66.133.182.164  rcpt  :
invalid
sender address format


any ideas to why this might happen? Ive taken note that for some
reason
qmail attaches the domain twice in this output from my smtp log file.



Qmail doesn't attach the domain twice, it's the sender who is doing
that.
That's why it's an invalid format - two '@' characters.

I'm guessing that the sender has '[EMAIL PROTECTED]' in their account
name,
where they should only have 'sender'.

--
-Eric 'shubes'


So does this mean that the send would be representing thmeselves as
 John Doe [EMAIL PROTECTED]

I don't know what you mean.


or is there a way to make chkusr accept it anyways?

There is, but I don't think you want to go there.


every since i upgraded i have had problems with this.

I don't think it's a problem. Do you know who this particular email is
coming from? If so, please elaborate. If not, let it go.


andy


--
-Eric 'shubes'

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



The email is comming from frontiernet.net  It is someone trying to reply
to an email a customer of ours sent from the domain
galesburganimalhospital.com which we host email for the customer


andy



Ok. It's still my guess that the client software (sender's host) sending via 
 frontiernet.net is configured improperly. Can the person who's sending it 
verify their configuration with frontiernet.net? Can you help them somehow?


I just don't see how it could be a toaster problem. The toaster is doing 
what it's supposed to do.


--
-Eric 'shubes'

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2006-07-01 Thread Eric \Shubes\

slamp slamp wrote:
Is there an easy way of making a sender address valid?? I saw on the 
list where Eric had to change SPEC file regarding CHKUSER_SENDER_FORMAT, 
CHKUSER_SENDER_SRS and some CHKUSER_ALLOW_SENDER_CHAR_? characters.


Here is a log for the rejected e-mail that I do not want to reject

2006-06-30 12:09:17.910279500 tcpserver: status: 0/100
2006-06-30 12:26:43.881218500 tcpserver: status: 1/100
2006-06-30 12:26:43.881224500 tcpserver: pid 28254 from 64.233.182.191 
http://64.233.182.191
2006-06-30 12:26:43.881227500 tcpserver: ok 28254 mail.mydomain.com:192 
http://mail.mydomain.com:192.168.2.6:25 :64.233.182.191::9298
2006-06-30 12:26:44.428592500 CHKUSER rejected sender: from 
[EMAIL PROTECTED]:: remote 
nf-out-0910.google.com:unknown:64.233.182.191 rcpt  : invalid sender 
address format

2006-06-30 12:26:45.553455500 tcpserver: end 28254 status 0
2006-06-30 12:26:45.553462500 tcpserver: status: 0/100


Here are the instructions from a previous post.
There is not presently an easier way. I hope to make some improvements 
in this area in the future, but don't hold your breath.



You can rebuild qmail-toaster according to Nick's recipe from an earlier post


  rpm -Uvh qmail-toaster*.src.rpm

  cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)

  edit qmail-toaster.spec

  find 'sleep 5'  (should be line 606)

  change  5 to 300 (5 seconds to 300 seconds)

  rpmbuild -bb --with cnt40 qmail-toaster.spec

  When the build process pauses, make your changes. You have 5 minutes.

  edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish


You'll need to edit chkuser_settings.h from another terminal as follows 
(uncomment the #define):
/*
 * Uncomment to enable usage of # and + characters within sender address
 * This is used by SRS (Sender Rewriting Scheme) products
 */
#define CHKUSER_ALLOW_SENDER_SRS



  Save your changes and wait for the 300 seconds to expire and
  watch it build.

  cd ../RPMS/i386/

  qmailctl stop

  rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm

  qmailctl start



HTH



--
-Eric 'shubes'

-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [qmailtoaster] invalid sender address format

2006-07-01 Thread Erik Espinoza

I have seen this mentioned a few times on the list, so I have built
updated package of qmail-toaster with this tweak already applied. It
will become the default in future releases.

http://devel.qmailtoaster.com/

Thanks,
Erik

On 7/1/06, Eric Shubes [EMAIL PROTECTED] wrote:

slamp slamp wrote:
 Is there an easy way of making a sender address valid?? I saw on the
 list where Eric had to change SPEC file regarding CHKUSER_SENDER_FORMAT,
 CHKUSER_SENDER_SRS and some CHKUSER_ALLOW_SENDER_CHAR_? characters.

 Here is a log for the rejected e-mail that I do not want to reject

 2006-06-30 12:09:17.910279500 tcpserver: status: 0/100
 2006-06-30 12:26:43.881218500 tcpserver: status: 1/100
 2006-06-30 12:26:43.881224500 tcpserver: pid 28254 from 64.233.182.191
 http://64.233.182.191
 2006-06-30 12:26:43.881227500 tcpserver: ok 28254 mail.mydomain.com:192
 http://mail.mydomain.com:192.168.2.6:25 :64.233.182.191::9298
 2006-06-30 12:26:44.428592500 CHKUSER rejected sender: from
 [EMAIL PROTECTED]:: remote
 nf-out-0910.google.com:unknown:64.233.182.191 rcpt  : invalid sender
 address format
 2006-06-30 12:26:45.553455500 tcpserver: end 28254 status 0
 2006-06-30 12:26:45.553462500 tcpserver: status: 0/100

Here are the instructions from a previous post.
There is not presently an easier way. I hope to make some improvements
in this area in the future, but don't hold your breath.

 You can rebuild qmail-toaster according to Nick's recipe from an earlier post

   rpm -Uvh qmail-toaster*.src.rpm

   cd /usr/src/redhat/SPECS (assuming you are using CentOS 4)

   edit qmail-toaster.spec

   find 'sleep 5'  (should be line 606)

   change  5 to 300 (5 seconds to 300 seconds)

   rpmbuild -bb --with cnt40 qmail-toaster.spec

   When the build process pauses, make your changes. You have 5 minutes.

   edit /usr/src/redhat/BUILD/qmail-1.03/chkuser_settings.h as you wish

 You'll need to edit chkuser_settings.h from another terminal as follows 
(uncomment the #define):
 /*
  * Uncomment to enable usage of # and + characters within sender address
  * This is used by SRS (Sender Rewriting Scheme) products
  */
 #define CHKUSER_ALLOW_SENDER_SRS


   Save your changes and wait for the 300 seconds to expire and
   watch it build.

   cd ../RPMS/i386/

   qmailctl stop

   rpm -Uvh --replacefiles --replacepkgs qmail-*.rpm

   qmailctl start


 HTH


--
-Eric 'shubes'

-
 QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
QmailToaster hosted by: VR Hosted http://www.vr.org
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[qmailtoaster] invalid sender address format

2006-06-30 Thread slamp slamp
Is there an easy way of making a sender address valid?? I saw on the list where Eric had to change SPEC file regarding CHKUSER_SENDER_FORMAT, CHKUSER_SENDER_SRS and some CHKUSER_ALLOW_SENDER_CHAR_? characters.
Here is a log for the rejected e-mail that I do not want to reject2006-06-30 12:09:17.910279500 tcpserver: status: 0/1002006-06-30 12:26:43.881218500 tcpserver: status: 1/1002006-06-30 12:26:43.881224500
 tcpserver: pid 28254 from 64.233.182.1912006-06-30 12:26:43.881227500 tcpserver: ok 28254 mail.mydomain.com:192.168.2.6:25 :64.233.182.191::9298
2006-06-30 12:26:44.428592500 CHKUSER rejected sender: from [EMAIL PROTECTED]:: remote nf-out-0910.google.com:unknown:64.233.182.191 rcpt  : invalid sender address format
2006-06-30 12:26:45.553455500 tcpserver: end 28254 status 02006-06-30 12:26:45.553462500 tcpserver: status: 0/100