OSEC

Neohapsis is currently accepting applications for employment. For more information, please visit our website www.neohapsis.com or email hr@neohapsis.com
 
Re: Simple setup issue - case sensitive

From: Ryan Babchishin (rbabchishinepalscorp.com)
Date: Thu May 01 2003 - 11:20:35 CDT


Gregory Wood wrote:
> Group -
>
> I am using PAM to authorize. My problem is that 'luisl' is correct
but I get
> 'LuisL' and 'LUISL' from my senders.
>
> What it appears that I need is a small script that converts the entire
> address to lower case (ex: POSTFIX-USERSPOSTFIX.ORG to
> postfix-userspostfix.org).
>
> I'm sure someone has already done this but I haven't found it.
>
> Thanks.
>
> Gregory Wood
> Farsight Voice Data Solutions
> www.farsweb.com
>

This will work, but I don't know how your going to use it with Postfix...

~# echo ABcD123xZ | tr [:upper:] [:lower:]
abcd123xz
~#

- Ryan