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


起動時のオフライン状態設定

前述の通り、`~/.wl' などで変数 wl-pluggednil に設 定してから起動すると、起動時からオフラインモードにすることができますが、 さらに細かくサーバやポート毎にオフライン状態を設定することもできます。併 せて変数 wl-reset-plugged-alist も参照下さい。

通常、起動時には `~/.folders'wl-smtp-posting-server, wl-nntp-posting-server などから各ポートの plug 状態が自動的に追加 されますが、これらのポートの plug 状態を変更したり、上記以外のポートを追加 したりする場合には wl-make-plugged-hook に変更する関数を記述しま す。

(add-hook 'wl-make-plugged-hook
          '(lambda ()
             (elmo-set-plugged plugged値(t/nil) server port)
                     ;; server,portのplug状態を新規追加もしくは変更する
             (elmo-set-plugged plugged値(t/nil) server)
                     ;; port を省略するとserverの全portが変更される
                     ;; (port を省略して新規の追加はできない)
             ))


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