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
|
# sysvfolderdef --
#
# Sample System vfolderdef file
# Nic Bernstein - 2/18/98
#
# NOTE: Only IMAP folders may be used as system mailboxes!!
# All system vfolders and structs are designated with an "S" in the second
# field. The easiest way to construct this file is to do an IMAP import of
# the mailboxes you are insterested in, edit them as you see fit, save the
# vfolderdef file, and then cut and paste from your own vfolderdef file into
# the system sysvfolderdef file. Then, add an "S" to the beginning of each
# second field. Lastly, change your IMAP user name to "UsEr," which will be
# replaced with the user's loginname at runtime.
# First the structure definitions
set vFolderStruct(S1) {{vfolder S10 Meetings} {vfolder S11 Support} {struct S2 Archives}}
set vFolderStruct(S2) {{vfolder S12 June} {vfolder S13 July}}
# Then the folder definitions
set vFolderDef(S10) {Meetings imap {browse 1} {{{server:143}shared.Meetings}} UsEr}
set vFolderDef(S11) {Support imap {browse 1 signature /usr/local/lib/postilion/signature-support from {Support staff <support@mycompany.com>}} {{{server:143}shared.Support}} UsEr}
set vFolderDef(S12) {June imap {browse 1} {{{server:143}archive.June}} UsEr}
set vFolderDef(S13) {July imap {browse 1} {{{server:143}archive.July}} UsEr}
# Then we insert the structure definition into an existing structure
set vFolderStruct(0) [linsert $vFolderStruct(0) 1 {struct S1 System}]
|