Strip off version numbers from dir name
[dockapps.git] / wmbiff / wmbiff / sample.wmbiffrc
blobe0a4f58477bc1a9fcffca01a2719fdae6133de7d
1 # $Id: sample.wmbiffrc,v 1.18 2003/11/09 07:01:15 bluehal Exp $
3 # See wmbiffrc(5) for more info.
5 # Global interval -- seconds between check mailboxes
6 interval=60
8 # Global askpass -- choose a password acting program
9 # that behaves like ssh-askpass.  The default is 
10 # askpass = /usr/bin/ssh-askpass.
11 # askpass is invoked on IMAP entries that have no password
12 # below.
13 # the commented version below is likely to work on RedHat 
14 # systems; wmbiff's default is likely to work on Debian
15 # systems with ssh-askpass installed.
16 #askpass = /usr/libexec/openssh/x11-ssh-askpass
18 # If you'd like it to be visually distinct so that
19 # you aren't confused with your normal passphrase:
20 #askpass = /usr/bin/ssh-askpass -fg cyan -bg black -xrm '*Dialog.font: -b&h-lucida-medium-r-normal-*-*-100-*-*-*-*-iso8859-1' -xrm '*Dialog.title: WMBiff Password Entry'
22 # If you're writing a better program for password prompting,
23 # or that stores passwords cleverly, and don't like that
24 # wmbiff adds 'password for wmbiff: user@site' to the command
25 # line, you can use something like this:
26 #askpass = /bin/echo mypassword ; true
28 # If you's like to chain the password to another program,
29 # such as kinit for Kerberos authentication, use (with the
30 # ruby interpreter installed):
31 askpass = /usr/bin/ssh-askpass -fg cyan -bg black -xrm '*Dialog.title: WMBiff Password Entry' | /usr/bin/ruby -e 'm = gets; IO.popen("/usr/bin/kinit > /dev/null", "w").puts(m); puts(m)' && true
33 # Skin.  A different source pixmap can be loaded dynamically.
34 # If not a full path, wmbiff will search /usr/share/wmbiff:/usr/local/share/wmbiff:.
35 # which is intended to keep the .wmbiffrc simple and portable to
36 # different systems with wmbiff installed differently.
38 # default
39 #skinfile=wmbiff-master-led.xpm
40 # higher contrast for lower-color displays
41 #skinfile=wmbiff-master-contrast.xpm
42 # make your own derivative and submit it 
43 # to us at wmbiff-devel@lists.sourceforge.net
45 ### First string ###
47 # Label, that will be displayed
48 label.0=Spool
50 # Path to mailbox for UNIX-style mailboxes,
51 # or pop3:user:password@mailserver[:port] for POP3 accounts
52 # port are optional, default - 110
53 path.0=mbox:/var/mail/gb
55 # Command, which will be executed for new mail in any watched mailbox
56 globalnotify=my_play /home/gb/sounds/new_mail_has_arrived.wav
58 # Command, which executed on new mail arrival, or special keyword 'beep'
59 #notify.0=beep
60 #notify.0=my_play /home/gb/sounds/new_mail_has_arrived.wav
62 # Don't want any global notification for this mailbox
63 notify.0=true
65 # Command, which executed on left mouse click on label 
66 action.0=rxvt -name mutt -e mutt
68 # Rescan interval; default to global interval
69 # For POP3-accounts bigger values (>60sec) is recommended
70 #interval.0=5
72 # Interval between mail auto-fetching; use 0 for disable (only
73 # mouse right-clicking still worked)
74 # use -1 for auto-fetching on new mail arrival
75 #fetchinterval.0=300
77 # Command, which used for fetching mail. Leave commented out for full disable
78 #fetchcmd.0=/usr/bin/fetchmail
80 ###
81 # NOTE: line under this line will not be parsed because the space before equal
82 label.1 = MBOX
83 # MBOX format: mbox:fullpathname
84 path.1=mbox:/home/gb/mail/10_ksi-linux-list
85 #notify.1=my_play /home/gb/sounds/new_mail_has_arrived.wav
86 action.1=rxvt -name mutt -e mutt -f /home/gb/mail/10_ksi-linux-list
88 # label.1 = MDIR
89 # # Maildir format: maildir:fullpathname
90 # path.1=maildir:/home/gb/Maildir/
91 # notify.1=my_play /home/gb/sounds/new_mail_has_arrived.wav
92 # action.1=rxvt -name mutt -e mutt -f /home/gb/Maildir
94 #or if you use gnomeicu:
95 #label.2=ICQ
96 #path.2=gicu:USER_UIN
97 #notify.2=beep
98 #action.2=gnomeicu-client show
100 label.3=POP3
101 # pop3 format: pop3:user:password@server[:port] [auth]
102 path.3=pop3:user:password@server apop
103 #notify.3=my_play /home/gb/sounds/new_mail_has_arrived.wav
104 action.3=rxvt -name mutt -e mutt -f /home/gb/mail/30_nftp-list
105 interval.3=300          # 5 minutes
106 fetchinterval.3=-1
107 fetchcmd.3=fetchmail
109 label.4=IMAP4
110 # IMAP4 format: imap:user:password@server[/mailbox][:port] [auth]
111 # mailbox is optional, default - INBOX
112 # password is optional, default - ask using the askpass config
113 # port is optional, default - 143
114 path.4=imap:user:password@server
115 interval.4=300          # 5 minutes
117 # label.4=IMAPS
118 # Secure IMAP format: imaps:user:password@server[/mailbox][:port] [auth]
119 # mailbox is optional, default - INBOX
120 # password is optional, default - ask using the askpass config
121 # port is optional, default - 993
122 # path.4=imaps:user:password@server cram-md5
123 # interval.4=300          # 5 minutes
125 # Shell expansion.  (can't be nested.)
126 # path.4=mbox:/home/me/Mail/`ls -t1 /home/me/Mail/list-archive-* | head -1`
127 # label.4=tick
129 # Shell method
130 # path.4=shell:::lpq | grep Queue | awk '{print $2}'
132 # To check for security updates in debian
133 path.4=shell:::/usr/lib/wmbiff/security.debian.rb
135 # Ways wmbiff can drive MAC OS X Mail using AppleScript.
136 # action.0 = osascript -e 'tell application "Mail"' -e 'set selected mailboxes of first message viewer to {mailbox "in-grads" of imap account "me@myaccount.org"}' -e 'activate' -e 'end tell'
137 # action.1 = osascript -e 'tell application "Mail"' -e 'set selected mailboxes of first message viewer to {inbox}' -e 'activate' -e 'end tell'