Re: [vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-05 Thread Alex Pleiner
* Walter Souto R. Junior [EMAIL PROTECTED] [2005-01-05 03:08]:

 rcpt to: [EMAIL PROTECTED]
 533 sorry, your envelope recipient has been denied (#5.7.1)

 Any ideas?

Walter,

this error message is not in vanilla qmail. So I guess, you are using
some kind of badrcptto-patch (qregex?). Please show us this patch and
the contents of it's config file (control/badrcptto?) 

Alex

-- 
Alex Pleinerzeitform Internet Dienste
mailto:[EMAIL PROTECTED]  Fraunhoferstraße 5
PGP S/MIME: http://key.zeitform.de/ap   64283 Darmstadt, Germany
Tel./Fax: +49 (0) 6151 155-635 / -634   http://www.zeitform.de
Jabber: [EMAIL PROTECTED]


Re: [vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-05 Thread Walter Souto R. Junior
Hi Alex,
this error message is not in vanilla qmail. So I guess, you are using
some kind of badrcptto-patch (qregex?). Please show us this patch and
the contents of it's config file (control/badrcptto?)
I just look into it moments before I get your message. Yes I'm using some  
kind of regex patch. Currently I have one file named badmailto. Follow  
it's contents:

# must not contain invalid characters,
# brakets or multiple @'s
[\W\D!%#:\*\^]
[\(\)]
[\{\}]
@.*@
I setup this server almost based on Shupp's toaster version 0.5. So I'm  
using his patch that contains qregex.patch-20020129, but the code is  
blended with another patches. I see that this patch is really old, but  
says on the readm file that qregex is case insentive.

I found this version of the patch here:
http://alex.zeitform.de/qmail/qmail_single_patches/qregex.patch-20020129
Thanks for any help,
--
Walter.


Re: [vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-05 Thread Alex Pleiner
* Walter Souto R. Junior [EMAIL PROTECTED] [2005-01-05 14:18]:
 Hi Alex,


 this error message is not in vanilla qmail. So I guess, you are using
 some kind of badrcptto-patch (qregex?). Please show us this patch and
 the contents of it's config file (control/badrcptto?)

 I just look into it moments before I get your message. Yes I'm using some  
 kind of regex patch. Currently I have one file named badmailto. Follow  
 it's contents:

 # must not contain invalid characters,
 # brakets or multiple @'s
 [\W\D!%#:\*\^]
 [\(\)]
 [\{\}]
 @.*@

Drop or fix the first non-comment line. It does not work. 

Explanation: Your regex.h does not support \W and \D (see regex(7), GNU
regex manual). That means, the regex code drops connections with
recipient domains containing uppercase W and D chars (see your example
smtp session). 

I was falling to the same trap and notified the patch author (Evan) to request
removal of this example. I didn't get an answer, but Andrew, who now
maintains this patch, removed it from README.qregex. 

BTW, there is an updated version with further enhancements at:
http://www.arda.homeunix.net/store/qmail/qregex-20040725.patch 

 I setup this server almost based on Shupp's toaster version 0.5. So I'm  
 using his patch that contains qregex.patch-20020129, but the code is  
 blended with another patches. I see that this patch is really old, but  
 says on the readm file that qregex is case insentive.

Maybe Bill should get a notification also

 I found this version of the patch here:
 http://alex.zeitform.de/qmail/qmail_single_patches/qregex.patch-20020129

Funny, this is my little site. :-)

Alex


-- 
Alex Pleinerzeitform Internet Dienste
mailto:[EMAIL PROTECTED]  Fraunhoferstraße 5
PGP S/MIME: http://key.zeitform.de/ap   64283 Darmstadt, Germany
Tel./Fax: +49 (0) 6151 155-635 / -634   http://www.zeitform.de
Jabber: [EMAIL PROTECTED]


Re: [vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-05 Thread Walter Souto R. Junior
Hi Alex,
Drop or fix the first non-comment line. It does not work.
Explanation: Your regex.h does not support \W and \D (see regex(7), GNU
regex manual). That means, the regex code drops connections with
recipient domains containing uppercase W and D chars (see your example
smtp session).
Ok! Now I have:
[!%#:*^(){}]
[\(\)]
[\{\}]
@.*@
And everything works fine!
I found this version of the patch here:
http://alex.zeitform.de/qmail/qmail_single_patches/qregex.patch-20020129
Funny, this is my little site. :-)
Wow! I just google for that! Thanks a lot.
[]s,
--
Walter.


Re: [vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-05 Thread Jeremy Kitchen
On Tuesday 04 January 2005 04:20 pm, X-Istence wrote:
 On Jan 4, 2005, at 11:48 AM, Jeremy Kitchen wrote:
  On Tuesday 04 January 2005 09:13 am, Walter Souto R. Junior wrote:
  Hi,
 
  My regitrar always capitalize the name of domains for the contacts
  (e.g.
  name@DOMAIN.TLD and the messages he send to me never comes. I try
  to
  change the the e-mail and I get the message normally, but after the
  confirmation, the system of the registrar capitalizes the domain
  again...
 
  domains have no case sensitivity.  DoMaIn.TlD is the same as
  domain.tld,
  DOMAIN.TLD, dOmAIN.tlD, etc.  Technically, local parts can be case
  sensitive,
  but qmail converts all local parts to lowercase (as I believe most
  other UNIX
  mtas do as well).  On a qmail system, LaRRY is the same as larry,
  lArRy,
  LarRy, etc, they're all delivered to 'larry'

 So if i have a user whose username is GlaanieBoy, he would not recv any
 email? Since he does not have email enabled on his account it is not a
 problem, but i am asking in case that is true, which would mean i could
 only create accounts with lowercase letters.

that is correct.  However you can mak an account glaanieboy and any mail to 
GlaanieBoy would go there.

-Jeremy

-- 
Jeremy Kitchen ++ Systems Administrator ++ Inter7 Internet Technologies, Inc.
  [EMAIL PROTECTED] ++ www.inter7.com ++ 866.528.3530 ++ 815.776.9465 int'l
  kitchen @ #qmail #gentoo on EFnet IRC ++ scriptkitchen.com/qmail
 GnuPG Key ID: 481BF7E2 ++ jabber:[EMAIL PROTECTED]


pgpUBvp1jCtoE.pgp
Description: PGP signature


[vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-04 Thread Walter Souto R. Junior
Hi,
My regitrar always capitalize the name of domains for the contacts (e.g.  
name@DOMAIN.TLD and the messages he send to me never comes. I try to  
change the the e-mail and I get the message normally, but after the  
confirmation, the system of the registrar capitalizes the domain again...

I also try to log in my server and send message with capitalized domain  
name using mail command. The message has arrived normally.

I don't know what can be happen. The logs says:
@400041daaca439475a5c tcpserver: pid 26232 from 200.160.2.3
@400041daaca4394a5414 tcpserver: ok 26232 0:69.0.231.11:25  
:200.160.2.3::3192

But this messages never reach the queue or the Clamav/SpamAssassim. I  
can't figure where this kind of messages is got blocked or reject.

My system uses vpopmail 5.3.20 with qmailscanner 1.24 and old chkuser.
I think that somebody here in Brazil already have this problem with  
regsitro.br, so I apreciate any help.

Thanks in advance,
--
Walter Souto R. Junior
Bayweb Internet Consulting
Tel/Fax: +55 (21) 2226-3625
Celular: +55 (21) 9323-7283


Re: [vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-04 Thread Jeremy Kitchen
On Tuesday 04 January 2005 09:13 am, Walter Souto R. Junior wrote:
 Hi,

 My regitrar always capitalize the name of domains for the contacts (e.g.
 name@DOMAIN.TLD and the messages he send to me never comes. I try to
 change the the e-mail and I get the message normally, but after the
 confirmation, the system of the registrar capitalizes the domain again...

domains have no case sensitivity.  DoMaIn.TlD is the same as domain.tld, 
DOMAIN.TLD, dOmAIN.tlD, etc.  Technically, local parts can be case sensitive, 
but qmail converts all local parts to lowercase (as I believe most other UNIX 
mtas do as well).  On a qmail system, LaRRY is the same as larry, lArRy, 
LarRy, etc, they're all delivered to 'larry'

 I also try to log in my server and send message with capitalized domain
 name using mail command. The message has arrived normally.

 I don't know what can be happen. The logs says:

 @400041daaca439475a5c tcpserver: pid 26232 from 200.160.2.3
 @400041daaca4394a5414 tcpserver: ok 26232 0:69.0.231.11:25
 :200.160.2.3::3192

that looks like tcpserver logs, which are not useful here.  Check your 
qmail-send logs, but I don't think you'll find a problem

 But this messages never reach the queue or the Clamav/SpamAssassim. I
 can't figure where this kind of messages is got blocked or reject.

how do you know that tcp client even sent a message?  I see in my logs all day 
people connecting and doing nothing. (note, I have a slightly different 
configuration on my system, so I can see when someone is emailing or not)

 My system uses vpopmail 5.3.20 with qmailscanner 1.24 and old chkuser.

maybe it's the old chkuser?  I wouldn't think so, but it's potentially 
possible.

try connecting to your smtp server with telnet or netcat or similar and doing 
this:
helo bob
mail from: [EMAIL PROTECTED]
rcpt to: [EMAIL PROTECTED]
rcpt to: [EMAIL PROTECTED]
rcpt to: [EMAIL PROTECTED]

etc, and see what happens.

-- 
Jeremy Kitchen ++ Systems Administrator ++ Inter7 Internet Technologies, Inc.
  [EMAIL PROTECTED] ++ www.inter7.com ++ 866.528.3530 ++ 815.776.9465 int'l
  kitchen @ #qmail #gentoo on EFnet IRC ++ scriptkitchen.com/qmail
 GnuPG Key ID: 481BF7E2 ++ jabber:[EMAIL PROTECTED]


pgp4geTARdRyD.pgp
Description: PGP signature


Re: [vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-04 Thread X-Istence
On Jan 4, 2005, at 11:48 AM, Jeremy Kitchen wrote:
On Tuesday 04 January 2005 09:13 am, Walter Souto R. Junior wrote:
Hi,
My regitrar always capitalize the name of domains for the contacts 
(e.g.
name@DOMAIN.TLD and the messages he send to me never comes. I try 
to
change the the e-mail and I get the message normally, but after the
confirmation, the system of the registrar capitalizes the domain 
again...
domains have no case sensitivity.  DoMaIn.TlD is the same as 
domain.tld,
DOMAIN.TLD, dOmAIN.tlD, etc.  Technically, local parts can be case 
sensitive,
but qmail converts all local parts to lowercase (as I believe most 
other UNIX
mtas do as well).  On a qmail system, LaRRY is the same as larry, 
lArRy,
LarRy, etc, they're all delivered to 'larry'

So if i have a user whose username is GlaanieBoy, he would not recv any 
email? Since he does not have email enabled on his account it is not a 
problem, but i am asking in case that is true, which would mean i could 
only create accounts with lowercase letters.

--
Jeremy Kitchen ++ Systems Administrator ++ Inter7 Internet 
Technologies, Inc.
  [EMAIL PROTECTED] ++ www.inter7.com ++ 866.528.3530 ++ 815.776.9465 
int'l
  kitchen @ #qmail #gentoo on EFnet IRC ++ scriptkitchen.com/qmail
 GnuPG Key ID: 481BF7E2 ++ jabber:[EMAIL PROTECTED]


X-Istence


Re: [vchkpw] Problems to get e-mail when domain names are capitalized

2005-01-04 Thread Walter Souto R. Junior
Hi Jeremy,
try connecting to your smtp server with telnet or netcat or similar and  
doing
this:
helo bob
mail from: [EMAIL PROTECTED]
rcpt to: [EMAIL PROTECTED]
rcpt to: [EMAIL PROTECTED]
rcpt to: [EMAIL PROTECTED]

etc, and see what happens.
Ok. Now I get confused... Look that:
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 alonso.bayweb.biz ESMTP
helo bob
250 alonso.bayweb.biz
mail from [EMAIL PROTECTED]
250 ok
rcpt to: [EMAIL PROTECTED]
250 ok
rcpt to: [EMAIL PROTECTED]
250 ok
rcpt to: [EMAIL PROTECTED]
533 sorry, your envelope recipient has been denied (#5.7.1)
rcpt to: [EMAIL PROTECTED]
250 ok
rcpt to: [EMAIL PROTECTED]
250 ok
rcpt to: [EMAIL PROTECTED]
533 sorry, your envelope recipient has been denied (#5.7.1)
rcpt to: [EMAIL PROTECTED]
533 sorry, your envelope recipient has been denied (#5.7.1)
rcpt to: [EMAIL PROTECTED]
533 sorry, your envelope recipient has been denied (#5.7.1)
Any ideas?
Thanks,
--
Walter.