File: wmailrc-sample

package info (click to toggle)
wmail 2.0-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 400 kB
  • ctags: 186
  • sloc: sh: 2,571; ansic: 1,555; makefile: 88
file content (120 lines) | stat: -rw-r--r-- 3,903 bytes parent folder | download | duplicates (3)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#-*-shell-script-*-############################################################
#
# .wmailrc - wmail v2.0 configuration file
# note: cmd-line options always overide the settings in this file unless you
# force runtime reconfiguration by clicking on the docklets display area
#
# Format:
# identifier '=' value
# - identifiers are not case-sensitive
# - each identifier expects a typed value to be assigned with
# - typed value means either "string", boolean-switch (yes,on,true|no,off,false), some enum or int number
# - string values must be enclosed with `"'-characters (quoting)
# - string values supportes escape-sequences like \n,\r,\b,\t and decimal numbers \XXX (except \0)
# - # comments (only at beginning of lines)


# specify X display to open (not re-configurable during run-time)
# string value, default: ""
# Window.Display = "localhost:0.0"

# turn on non-shaped window-mode
# boolean value, default: No
# Window.NonShaped = Yes

# command to execute on button-click
# string value, default: "xterm -e mail"
Window.Button.Command = "wterm -fg white -bg black -T Pine -e pine &"

# specify your mailbox (if not, the $MAIL evironment-variable is used)
# string value, default: unset
# Mail.MailBox = "/var/spool/mail/YOUR_LOGIN"

# what file to use to store the cksums which help identify the mails
# string value, default: "" (causes fallback to $HOME/.wmail-cksums)
# Mail.ChecksumFile = "/home/YOUR_LOGIN/.wmail-cksums"

# enable wmail to ticker (and count) only new (unread) mails
# boolean value, default: No
Mail.ShowOnlyNew = Yes

# mail-check interval in seconds
# integer value, default: 1
Mail.CheckIntervall = 5

# setup the ticker-line: allowed values are: Address | NickName | FamilyName
# enum value, default: Address
Ticker.Mode = FamilyName

# set the ticker-frame-rate per seconds
# integer value, default: 60
# Ticker.Frames = 100

# like to use a real X11 font instead of the buildin ?
# Note the buildin font does not support all possible latin1 characters, so
# if you would like to see them you must make use of this.
# Ticker.X11Font = "-*-helvetica-medium-r-*-*-16-*-*-*-*-*-*-*"

# command to execute when receiving new mail (for example "/usr/bin/play somefile.wav &")
# string value, default: unset
# Mail.OnNew.Command = "/usr/bin/play /hda1/win98/media/notify.wav &"

# sender-skip-list, use this command multiple times to skip more then one sender-name
# string value, default: unset
Mail.SkipSender = "MAILER-DAEMON"

# force wmail to display and count only those mails who have their Status-field
# not set to RO (old read mail)
# this is useful if you do not remove your mails from the mbox after reading them
# default: Off
# Mail.UseStatusField = On

# supply the content of the status field that markes you email as read
# (The given value is substring-matched)
# default: "O"
# Mail.ReadStatus = "ro"

# color definitions follow: note that you can specify either
# - a X color-name like "Grey", "White", "light green" etc. or
# - a rgb-value using a hex-string like "#RRGGBB"


# color of the upper symbols
# string value, default: "#20B2AA"
# Colors.Symbols = "yellow"

# color of the ticker
# string value, default: "#D3D3D3"
# Colors.Font = "light grey"

# color of the dockapps background
# string value, default: "#282828"
# Colors.Backlight = "dark slate grey"

# color of inactive symbols
# string value, default: "black"
# Colors.OffLight = "#282828"

# color of the outer frame (using it will force non-shaped window mode)
# string value, default: unset
# Colors.NonShapedFrame = "grey"


### some color schemes :)

#############################
# wmcpuload like colors
#
# Colors.Symbols = "#131313"
# Colors.Font = "black"
# Colors.Backlight = "#6e766e"
# Colors.OffLight = "#5e665a"

#############################
# dark blue
#
# Colors.Symbols = "Yellow"
# Colors.Font = "White"
# Colors.Backlight = "DarkBlue"
# Colors.OffLight = "Black"