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
|
## Path: Network/Mail/Perdition
## Description: Basic configuration of the perdition mail retrieval proxy
## Type: yesno
## Default: yes
#
# Should we run perdition?
# A value of no overrides all other settings
#
RUN_PERDITION="yes"
## Type: string
## Default: ""
#
# Command line parameters to pass to perdition when run in any mode
#
# This is in addition to any mode specific flags.
# That is, it is in addition to any command line options supplied
# by POP3_FLAGS, POP3S_FLAGS, IMAP4_FLAGS, IMAP4S_FLAGS or MANAGESIEVE_FLAGS
#
FLAGS=""
## Type: yesno
## Default: yes
#
# Should we run an instance of perdition in POP3 mode?
#
POP3="yes"
## Type: string
## Default: ""
#
# Command line parameters to pass to perdition when run in POP3 mode
#
POP3_FLAGS=""
## Type: yesno
## Default: yes
#
# Should we run an instance of perdition in POP3S mode?
#
POP3S="yes"
## Type: string
## Default: ""
#
# Command line parameters to pass to perdition when run in POP3S mode
#
POP3S_FLAGS=""
## Type: yesno
## Default: yes
#
# Should we run an instance of perdition in IMAP4 mode?
#
# Set to "yes" to run this instance of perdition
# Set to any other value to not run this instance of perdition
IMAP4="yes"
## Type: string
## Default: ""
#
# Command line parameters to pass to perdition when run in IMAP4 mode
#
IMAP4_FLAGS=""
## Type: yesno
## Default: yes
#
# Should we run an instance of perdition in IMAP4S mode?
#
IMAP4S="yes"
## Type: string
## Default: ""
#
# Command line parameters to pass to perdition when run in IMAP4S mode
#
IMAP4S_FLAGS=""
## Type: yesno
## Default: yes
#
# Should we run an instance of perdition in managesieve mode?
#
MANAGESIEVE="yes"
## Type: string
## Default: ""
#
# Command line parameters to pass to perdition when run in managesieve mode
#
MANAGESIEVE_FLAGS=""
|