Diffstat (limited to 'kmicromail/libetpan/tests/README') (more/less context) (ignore whitespace changes)
-rw-r--r-- | kmicromail/libetpan/tests/README | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/kmicromail/libetpan/tests/README b/kmicromail/libetpan/tests/README new file mode 100644 index 0000000..66d8b2f --- a/dev/null +++ b/kmicromail/libetpan/tests/README | |||
@@ -0,0 +1,58 @@ | |||
1 | compose-msg | ||
2 | ----------- | ||
3 | |||
4 | creates a RFC 2822 message with MIME parts | ||
5 | |||
6 | syntax: compose-msg "text" filename | ||
7 | |||
8 | |||
9 | |||
10 | all the following programs will take as argument : | ||
11 | |||
12 | --driver=(pop3|imap|nntp|mbox|mh) -d pop3 (pop3|imap|nntp|mbox|mh) | ||
13 | |||
14 | default driver is mbox | ||
15 | |||
16 | --server={server-name} -s {server-name} | ||
17 | --port={port-number} -p {port-number} | ||
18 | --tls -t | ||
19 | --starttls -x | ||
20 | --user={login} -u {login} | ||
21 | --password={password} -v {password} | ||
22 | --path={mailbox} -l {mailbox} | ||
23 | --apop -a | ||
24 | --cache={directory} -c {directory} | ||
25 | |||
26 | the default driver is mbox with the path /var/mail/$USER | ||
27 | |||
28 | frm-simple, frm, frm-tree | ||
29 | ------------------------- | ||
30 | |||
31 | frm-simple will list all the mails of a mailbox without any MIME decoding. | ||
32 | |||
33 | frm will list all the mails of a mailbox and will decode the fields. | ||
34 | |||
35 | frm-tree will do the same thing as frm and will also show the threads | ||
36 | of the folder. | ||
37 | |||
38 | |||
39 | fetch-attachment | ||
40 | ---------------- | ||
41 | |||
42 | fetch-attachment gets all the named attachment of the given message | ||
43 | of the chosen mailbox and writes them on the current directory. | ||
44 | |||
45 | The program should be given message numbers (as given by frm) as | ||
46 | additionnal arguments. | ||
47 | |||
48 | |||
49 | readmsg-simple, readmsg | ||
50 | ----------------------- | ||
51 | |||
52 | readmsg-simple will display the content of the given messages. | ||
53 | All the content (headers and body) will be displayed. | ||
54 | |||
55 | readmsg will display only the text parts of the given messages. | ||
56 | |||
57 | The program should be given message numbers (as given by frm) as | ||
58 | additionnal arguments. | ||