Go to the first, previous, next, last section, table of contents.


Customizable Variables

wl-plugged
If this variable is set to nil, Wanderlust starts up in off-line mode from the beginning.
wl-queue-folder
The initial setting is `+queue'. This is the folder in which messages in the transmission queue are accumulated.
wl-auto-flush-queue
The initial setting is t. This flag controls automatic transmission of the queue when Wanderlust becomes on-line. If non-nil, the queue is automatically transmitted (with confirmation by y-or-n-p). If you want to transmit it manually, press F in the folder mode.
elmo-enable-disconnected-operation
The initial setting is nil. Controls off-line operations regarding IMAP4. If non-nil, off-line operations are carried out.
elmo-lost+found-folder
The initial setting is `+lost+found'. This is the folder to which messages are saved when they fails to be appended while the off-line re-file/copy queue is processed.
elmo-plugged-condition
The initial setting is one. The value of wl-plugged reflects the return value of the function elmo-plugged-p (without arguments). This variable elmo-plugged-condition specifies the condition on which the return value of (elmo-plugged-p) should be t depending on the plugged state of each port.
'one         : plugged if one or more ports are plugged.
'all         : plugged if all ports are plugged.
'independent : reflects wl-plugged (elmo-plugged) regardless of plugged
               states of the ports.
function     : reflects the return value of the function
 functions available per default
 'elmo-plug-on-by-servers
             : reflects the plugged state of the servers specified by the
               variable elmo-plug-on-servers.
 'elmo-plug-on-by-exclude-servers
             : reflects the plugged state of the servers that are not
               in elmo-plug-on-exclude-servers.
                  elmo-plug-on-exclude-servers defaults to
                   '("localhost"
                     (system-name)
                     (system-name)without the domain part)
Example 1:
 (setq elmo-plugged-condition 'all)
Example 2:
 (setq elmo-plug-on-servers '("smtpserver" "newsserver"))
 (setq elmo-plugged-condition 'elmo-plug-on-by-servers)
Example 3:
 (setq elmo-plug-on-exclude-servers '("localhost" "myname"))
 (setq elmo-plugged-condition 'elmo-plug-on-by-exclude-servers)
wl-reset-plugged-alist
The initial setting is t. If non-nil, plugged states are initialized on a per server or port basis when Wanderlust starts up. If nil, plugged states are retained while Emacs is running. In other words, they are initialized when Emacs is restarted even if the value is nil.


Go to the first, previous, next, last section, table of contents.