Manage your mbox file with Archmbox


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Manage your mbox file with Archmbox
# 1  
Old 12-08-2008
Manage your mbox file with Archmbox

12-08-2008 09:00 AM
Archmbox lets you list, move, and copy messages from one mbox mail file to another, primarily for archiving messages. This tool lets you easily move all messages that are older than a given date into another (possibly compressed) mbox file, and you can also grab or delete messages by matching regular expressions against message headers.



Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

AIX Delete all mbox content

Hi, How to Delete all mbox content in AIX? Thanks. (2 Replies)
Discussion started by: big123456
2 Replies

2. UNIX for Beginners Questions & Answers

How to manage parameter in alias?

I make alias in bashrc file and typed it on prompt, alias tes='echo "$1"xx"$2"xxx"$3"xxxx' $ tes a b c xxxxxxxxx a b c what's happened to the shell here ?, and also, alias tes='echo "$3"xx"$2"xxx"$1"xxxx $ tes a b c xxxxxxxxx a b c anyone sincerely is to help me.. (2 Replies)
Discussion started by: abdulbadii
2 Replies

3. Tips and Tutorials

How to manage file names with special characters

One of the common questions asked are: how do i remove/move/rename files with special (non-printable) characters in their name? "Special" doesn't always mean the same. As there are more and less special characters, some solutions are presented, ranging from simple to very complicated. Usually a... (0 Replies)
Discussion started by: bakunin
0 Replies

4. Programming

mbox

Hi All, Can any one explain the how mbox is working in IPC mechanisms. what are the system calls have to use mbox creation.:) Advanced thanks Bala (3 Replies)
Discussion started by: 2104692
3 Replies

5. Shell Programming and Scripting

mbox ascii mail text file ?

Hi, I am using "fetchmail" and "procmail" combination to trigger a job based on an input mail.Using fetchmail, incoming mail is downloaded from the mailserver to the local host.Once the mail is flushed,procmail starts execution and thereby triggers the application script. In-between... (3 Replies)
Discussion started by: DILEEP410
3 Replies

6. UNIX for Dummies Questions & Answers

Manage Mail

I have recently taken over a UNIX system from another programmer and am just beginning to learn UNIX. When I enter the MAIL command, the data scrolls off the screen for five minutes. Some of it is several years old. Can I tell the MAIL command to give me the last few items or the last few... (1 Reply)
Discussion started by: SUSANR9999
1 Replies

7. UNIX for Dummies Questions & Answers

Maildir or mbox??

Hi, I was wondering if someone can tell me what the difference is exactly between maildir and mbox. We have a few solaris 9 systems here and would like to get an imap server running on them. I have setup fetchmail so that it retrives remote pop3 mail into an account, and that mail is then... (3 Replies)
Discussion started by: sugarat
3 Replies

8. UNIX for Dummies Questions & Answers

manage the wtmp file

Here's a usefull perl script to trim the wtmp file, in case it got too big, which happens sometimes, or got curropted (which also happens often). You could learn from here how to parse the wtmp file... but of course for just reading its content always simply use "last" like Neo said.... ... (0 Replies)
Discussion started by: me2unix
0 Replies
Login or Register to Ask a Question
pop3d::dbox(n)						      Tcl POP3 Server Package						    pop3d::dbox(n)

NAME
pop3d::dbox - Simple mailbox database for pop3d SYNOPSIS
package require Tcl 8.2 package require pop3d::dbox ?1.0? ::pop3d::dbox::new ?dbName? dbName option ?arg arg ...? dbName destroy dbName base base dbName add mbox dbName remove mbox dbName move old new dbName list dbName exists mbox dbName locked mbox dbName lock mbox dbName unlock mbox dbName stat mbox dbName size mbox msgId dbName dele mbox msgList storageCmd get mbox msgId DESCRIPTION
The package pop3d::dbox provides simple/basic mailbox management facilities. Each mailbox object manages a single base directory whose sub- directories represent the managed mailboxes. Mails in a mailbox are represented by files in a mailbox directory, where each of these files contains a single mail, both headers and body, in RFC822 conformant format. Any mailbox object following the interface described below can be used in conjunction with the pop3 server core provided by the package pop3d. It is especially possible to directly use the objects created by this package in the storage callback of pop3 servers following the same interface as servers created by the package pop3d. ::pop3d::dbox::new ?dbName? This command creates a new database object with an associated global Tcl command whose name is dbName. The command dbName may be used to invoke various operations on the database. It has the following general form: dbName option ?arg arg ...? Option and the args determine the exact behavior of the command. The following commands are possible for database objects: dbName destroy Destroys the mailbox database and all transient data. The directory associated with the object is not destroyed. dbName base base Defines the base directory containing the mailboxes to manage. If this method is not called none of the following methods will work. dbName add mbox Adds a mailbox of name mbox to the database. The name must be a valid path component. dbName remove mbox Removes the mailbox specified through mbox, and the mails contained therein, from the database. This method will fail if the speci- fied mailbox is locked. dbName move old new Changes the name of the mailbox old to new. dbName list Returns a list containing the names of all mailboxes in the directory associated with the database. dbName exists mbox Returns true if the mailbox with name mbox exists in the database, or false if not. dbName locked mbox Checks if the mailbox specified through mbox is currently locked. dbName lock mbox This method locks the specified mailbox for use by a single connection to the server. This is necessary to prevent havoc if several connections to the same mailbox are open. The complementary method is unlock. The command will return true if the lock could be set successfully or false if not. dbName unlock mbox This is the complementary method to lock, it revokes the lock on the specified mailbox. dbName stat mbox Determines the number of messages in the specified mailbox and returns this number. This method fails if the mailbox mbox is not locked. dbName size mbox msgId Determines the size of the message specified through its id in msgId, in bytes, and returns this number. The msgId has to be in the range "1 ... [dbName stat]" or this call will fail. If stat was not called before this call, size will assume that there are zero messages in the mailbox. dbName dele mbox msgList Deletes the messages whose numeric ids are contained in the msgList from the mailbox specified via mbox. The msgList must not be empty or this call will fail. The numeric ids in msgList have to be in the range "1 ... [dbName stat]" or this call will fail. If stat was not called before this call, dele will assume that there are zero messages in the mailbox. storageCmd get mbox msgId Returns a handle for the specified message. This handle is a mime token following the interface described in the documentation of package mime. The token is read-only. In other words, the caller is allowed to do anything with the token except to modify it. The msgId has to be in the range "1 ... [dbName stat]" or this call will fail. If stat was not called before this call, get will assume that there are zero messages in the mailbox. KEYWORDS
pop3, internet, network, protocol, rfc1939 pop3d 1.0 pop3d::dbox(n)