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
|
# SERVERS
# We have changed the style of our config file to reflect a (hopefully)
# more forgiving XML style.
# In its current state, you can just add Server and Filter directives that
# contain stuff. In the future we hope to make it so you can use more
# of the inside directives (like <imapport>) to reflect default prefs.
# Anyways, here is an example <Server> directive:
<Server>
<name>MyServer</name>
<smtpserver>smtp.fsf.com</smtpserver>
<imapserver>imap.fsf.com</imapserver>
<imapport>143</imapport>
<username>myUsername</username>
<password>myPassword</password>
<mailbox>~/mail</mailbox>
<fccfolder>sent-mail</fccfolder>
</Server>
# Some defaults are assumed, if you don't put them in. They are currently:
# name = "Untitled Server"
# imapport = "143"
# mailbox = "~/mail"
# fccfolder = "sent-mail"
# smtpserver = "localhost"
#
# These may change over time. To be safe, just use all the directives.
# The mailbox directive defines where on the imap server to look for
# your mail. The others should be self-explanatory.
#
#
# FILTERS
#Filter rules can be entered with the format
<Filter>
<field>to</field>
<filterfolder>inbox</filterfolder>
<filterstring>althea</filterstring>
</Filter>
# Where field is the field in the message to look at, filterfolder is the
# folder that the mail gets placed in, and filterstring is the string
# to search for.
#
#
# NOTE: The directives inside the <Server> and <Filter> directives can
# be in any order. Yeah!
|