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 99 100 101 102 103
|
################################################################
###
### Sample /usr/local/lib/im/SiteConfig
###
### Syntax::
### key=value
###
### * "key=value" is equivalent to "--key=value" style command option.
### * "key" must start at the beginning of the line.
### * "=" must follow after "key" without white spaces.
### * White spaces are allowed between "=" and "value".
### * ":" can be used instead of "=".
### * Characters after "#" are ignored.
###
### The following examples are all the same:
### key=value
### key= value
### key:value
### key: value
###
### $variable will be expanded.
### '~' will be expanded.
###
##
## Default global parameters
##
# directories (relative to ~/)
#MailDir=Mail
#NewsDir=News # for saved news
# folders in $MailDir
#InboxFolder=+inbox # default destination of imget
#DraftFolder=+draft
#TrashFolder=+trash # default destination of message removal in Mew
# folder style in $NewsDir
#PreserveDot=off
# mode for creation
#FolderMode=0700
#MsgMode=0600
# to keep state of IM commands (CurrentFolder, etc.)
#ContextFile=Context # relative to ~/.im/
##
## Default settings
##
# mail address aliases
#AliasesFile=Aliases # relative to ~/.im/
# PetName: mail address aliases for displaying
#PetnameFile=Petnames # relative to ~/.im/
# Message-ID database
#MsgDBFile=msgiddb # location (relative to ~/.im/)
#MsgDBType=DB # type of database (DB, NDBM, SDBM)
# to call user defined subroutines (relative to ~/.im/)
#GetSbr=get.sbr # hooks for imget
#ScanSbr=scan.sbr # hooks for imget/imls
# folders
#Src=$InboxFolder # default source of most commands
#Imrm.Src=$TrashFolder # default source for message cleanups
# imget/imls
#Form=%5n %m%d %-14A %-18S %b # default format for scanning
#Width=80 # default width for scanning
#JisSafe=on # escape seq. of JIS char. should be managed
#Indent=2 # indent step for threading
# servers
#Smtpservers=localhost # default server for SMTP
#NntpServers=localhost # default server for NNTP
# imget
#Imget.Src=local # default source of imget (local mailbox)
#PopHistory=pophist # to save last state (relative to ~/.im/)
#NntpHistory=newshist # to save last state (relative to ~/.im/)
#MBoxStyle=qmail # if folder style mbox of qmail is used
#Imget.Src=local:${HOME}/MailDir# in case of qmail
#PopAccount=/APOP@localhost/110 # Account info for POP access
#ImapAccount=/AUTH@localhost/143# Account info for IMAP access
#HttpProxy=proxy-server:8080 # Proxy server for HTTP access
#NoProxy=http://.*my.domain/ # URL regex not to use Proxy server
#UsePwAgent=no # Use password agent
#PwAgentPort=6543 # Port to connect pwagent with TCP/IP
# (Insecure for multi-user system!)
# 0 to use UNIX domain socket (more secure)
# be careful on security if you wish to use PwFiles!
#UsePwFiles=no # Use password files
#PwFiles=password # Password files (relative to ~/.im/)
# imput
#FccDir=$MailDir # directory for FCC folders
#MsgIdDomain=${HOST} # if you want to use FQDN of dispatching host
FromDomain=_domain_of_your_mail_address_
ToDomain=_domain_when_domain_part_is_omitted_
|