[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: [cobalt-users] deleteing large messages on behalf of customers



-----Original Message-----
>Subject: [cobalt-users] deleteing large messages on behalf of customers


>Is there a simple way to delete individual large e-mails that cusstomers
may
>have in their mailboxes.

>Is it a case of doing 'su <username>' and then using the 'mail' utility? I
>have to enable telnet access to do that though, or is there a better
method?

telnet localhost 110
user YOURUSER
pass YOURPASSWD
list

retr 1 (will read msg 1)

dele 1 (will delete msg 1)

quit

you dont need to turn the telnet service on to do this.


hope this helps.
Sean