Hello, Martin.

> > How I can commit this features into CVS ?
> Just post it oh the list. Then let's discuss about it! .-)

First need to update db to create new column:
ALTER TABLE customer_user ADD COLUMN expire_date int default 0;

then 

cvs diff CustomerAuth/DB.pm
Index: CustomerAuth/DB.pm
===================================================================
RCS file: /home/cvs/otrs/Kernel/System/CustomerAuth/DB.pm,v
retrieving revision 1.11
diff -r1.11 DB.pm
17a18
> use Time::Local;
97a99
>     my $expire_date = '';
100c102
<     my $SQL = "SELECT $Self->{Pw}, $Self->{Key}".
---
>     my $SQL = "SELECT $Self->{Pw}, $Self->{Key}, expire_date".
108a111
>         $expire_date = $Row[2];
118a122,129
>
>     if ($expire_date != 0 && $expire_date < time ){
>         $Self->{LogObject}->Log(
>           Priority => 'notice',
>           Message => "CustomerUser: User '$User' expired !
(REMOTE_ADDR: $RemoteAddr)",
>         );
>         return;
>     };

default value is 0 (never expire).

is it ok ? :) 

wbr,
Abylai Ospan

_______________________________________________
OTRS mailing list: dev - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/dev
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/dev

Reply via email to