blob: 470609b2703ec506a5073ff65acf7b3f24658ecc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# UserName - YourHotmailUserName (without @something)
#
UserName=
# Password - YourHotmailPassword (so restrict the access rights to this
# configuration file.)
#
Password=
# Domain - YourHotmailDomain (default 'hotmail.com', basically what's after
# the @ in your address)
#
#Domain=hotmail.com
# Proxy - ProxyServer if you're behind one.
#
#Proxy=
# ProxyAuth - ProxyPassword if you're behind one with password.
#
#ProxyAuth=
# Downloaded - SomeFileName (it keeps track of all id's of messages
# that were fetched already)
#
Downloaded=
# FetchOnlyUnread - Yes or No (default)
#
# If Yes only messages that are marked unread are fetched.
# Downloaded and FetchOnlyUnread are mutual exclusive.
#
#FetchOnlyUnread=No
# Processor - FilterCommand ('/usr/bin/procmail' by default).
#
# Any filtercommand taking the message in mbox format on its stdin
# and doing something with it.
#
# *) '/bin/cat - >> FetchedMail' might be another interesting one to drop
# directly in a mbox file.
#
# *) The distribution contains also SmtpForward.pl and SmtpAuthForward.pl.
# Those can be used as 'Processor' to forward the mails to an SMTP server.
#
Processor=/usr/local/bin/procmail
# Folder - FolderName : Folders that need to be fetched.
#
# This option must be repeated for each folder you want to fetch.
# If this option is not present then all folders will be fetched.
#
#Folder=
# MarkRead - Yes or No (default) : whether the message will be marked read
# after being downloaded. By the way, it never
# gets marked in any way when not downloaded
# due to it being already in the
# Downloaded = SomeFileName (see higher) file.
#
#MarkRead=No
# Delete - Yes or No (default) : whether the message will be deleted after
# being downloaded. By the way, it never gets
# deleted in any way when not downloaded due to
# it being already in the
# Downloaded = SomeFileName (see higher) file.
#
#Delete=No
# MoveToFolder - FolderName or @FileName
#
# FolderName is the folder to which the message must be moved after being
# downloaded. By the way, it never gets moved in any way when not downloaded
# due to it being already in the Downloaded = SomeFileName (see higher) file.
#
# If this argument takes the form @FileName then the FolderName is taken from
# the contents of the file FileName.
#
# The idea is that f.i. a spamfilter can decide to what folder it must be moved.
# That spamfilter would be part of Processor = FilterCommand (see higher) and
# write a FolderName (for instance Junk if considered junk) to the file
# FileName.
#
#MoveToFolder=
# SkipTrash - Yes or No (default) : whether the message Trash folder will be
# handled (default) or not.
#
#SkipTrash=No
# BreakOnAlreadyDownloaded = Number
#
# Stop scanning a folder when detecting a seqeunce of Number messages that
# is already downloaded. 0 means disabling this feature and is default.
# Meant to reduce folder scanning.
#
#BreakOnAlreadyDownloaded=0
|