[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
RE: [cobalt-users] deleteing large messages on behalf of customers
- Subject: RE: [cobalt-users] deleteing large messages on behalf of customers
- From: "Sean Chester" <seanc@xxxxxxxxxxxxxxxxxxxxxx>
- Date: Thu Jul 12 20:58:50 2001
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
-----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