Ronny Haryanto wrote:
> 
> On 04-Jan-2000, Geir H�gberg wrote:
> > SOLVED! :)
> 
> It would be nice if one could share the solution she/he found to
> problems she/he asked in the mailing list, so others might benefit
> from it. Don't you think? :)
> 
> --
> Ronny Haryanto

in vdelivermail.c around line 157
replace:
        for(i=0;i<(MAX_SMALL_BUF-1)&&user[i]!=0&&user[i]!='-';++i) {
                user2[i] = user[i];
        }
        user2[i] = 0;
        pw_data = vauth_getpw(user2, host);

        if ( pw_data == NULL && user[i] == '-' ) {
                pw_data = vauth_getpw(user, host);
        }

with:
        pw_data = vauth_getpw(user, host);


Ken Jones
Inter7

Reply via email to