Mailing list header changes (fuck you Google)
[citadel.git] / textclient / citadel.rc
1 #
2 # This file allows full customization of the user interface.
3 #
4 # The standard client looks for this file in:
5 # 1. $HOME/.citadelrc
6 # 2. <compiled CTDLDIR>/citadel.rc
7 # 3. /usr/local/etc/citadel.rc
8 # 4. /etc/citadel.rc
9 # 5. <current directory>/citadel.rc
10
11 # Set ENCRYPT to yes to force SSL/TLS encryption when connecting to a
12 # Citadel server, even if the server is on the same machine as the
13 # client.  Set it to no to disable SSL/TLS encryption.  The default is to
14 # enable encryption for remote systems and to disable encryption for
15 # systems on the same machine as the client.
16 encrypt=default
17
18 # Set EDITOR to the name of an external editor to be used for entering
19 # messages.  If you want the external editor to be used by default, be sure
20 # to reflect this in the command set below.
21 #
22 # editor=vi
23
24 # If you define PRINTCMD, it will be a pipe through which messages are
25 # printed when the user hits the <P>rint key after a message.
26 #
27 #printcmd=lpr
28
29 # If you define EXPCMD, it will be a pipe through which any incoming
30 # instant messages will be printed.
31 #expcmd=xmessage -title "Instant message" -center -buttons OK -file -
32
33 # ANSI_COLOR should be set to on/off/auto/user to control the use of
34 # color on the screen.  If it is set to "auto" then an autodetect will be
35 # attempted.  If it is set to "user" then it's a user-configurable option.
36 #
37 ansi_color=user
38
39 # USE_BACKGROUND controls Citadel's use of the background.  If it is turned
40 # off, then Citadel will set the background to black.  When it is turned on,
41 # the background will be unchanged.  This is most useful with "transparent"
42 # terminals.  Color must be on (see above) or this option has no effect.
43 #
44 use_background=off
45
46 # STATUS_LINE will keep an informative status line on the top of the screen,
47 # but it doesn't work on all terminals (Mac OS is particularly bad at this).
48 status_line=off
49
50 # PROMPT_CONTROL should be set to on/off/user to control whether the <N>ext
51 # and <S>top keys are active when displaying the paginator prompt.  If it
52 # is set to "user" then it's a user-configurable option.
53 #
54 prompt_control=user
55
56 # If DISPLAY_MESSAGE_NUMBERS is set to 1, then messages will be displayed
57 # with their message numbers in the header.  This is ugly but some
58 # people seem to like it anyway...
59 #
60 display_message_numbers=0
61
62 # The FORCE_MAIL_PROMPTS directive causes mail rooms to always display a
63 # prompt after each message, even if the user has prompts turned off.
64 #
65 force_mail_prompts=1
66
67 # USE_FLOORS determines whether the user sees floors, or a flat room space.
68 # Set it to YES to always use floors, NO to never use floors, or DEFAULT
69 # to use the setting in the user's configuration (which is normally the case).
70 #
71 use_floors=DEFAULT
72
73 # BEEP should be set to 1 if you wish the terminal to beep when an express
74 # message (page) comes in, otherwise set it to 0.
75 #
76 beep=1
77
78 # ALLOW_ATTACHMENTS should be set to 1 if you wish the user to be able to
79 # attach files to messages and/or save attachments to disk while reading
80 # messages.  (DANGER: do NOT enable this for "safe" public clients!)
81 #
82 allow_attachments=0
83
84 # IDLE_THRESHOLD is the amount of time a user does nothing before being
85 # listed as "idle" on the who list.  The default is 900 seconds (15 minutes).
86 #
87 idle_threshold=900
88
89 # If you set REMEMBER_PASSWORDS to 1, the Citadel client will offer to
90 # remember your user name and password for every Citadel server you access,
91 # automatically logging in with them on subsequent visits. 
92 # (DANGER: do NOT enable this for "safe" public clients!)
93 #
94 remember_passwords=0
95
96 # Optionally, you can force the same username and password everywhere.  This
97 # obviously isn't as robust as the password manager.
98 #
99 #username=My User Name
100 #password=mypassword
101
102 # If URLCMD is defined, users can hit 'U' after reading a message which
103 # contains embedded URL's, and the command will be executed.  Usually this
104 # will be used to remote-control a web browser.  (Do not enable this command
105 # for 'safe' public clients.)
106 #
107 # This one ought to work on any Linux that has the "Portland" API's installed.
108 # If properly configured, xdg-open will open the URL in the user's preferred
109 # web browser.
110 #urlcmd=xdg-open "%s"
111 #
112 # This one works really well on a Macintosh -- it opens URL's in whatever
113 # browser you have configured as the system default.
114 #urlcmd=open "%s"
115
116 # If OPENCMD is defined, users can hit 'O' after reading a message which
117 # contains attachments, to open the attachments using that command.  This
118 # allows attachments to be opened directly from the Citadel client without
119 # having to first save them in a file.  The "allow_attachments" option (see
120 # above) must be enabled in order for this to work.
121
122 # xdg-open works on most newer Linux systems
123 opencmd=xdg-open "%s"
124 #
125 # This probably will work on a Macintosh
126 #opencmd=open "%s"
127
128 # If GOTMAILCMD is defined, the specified command will be executed.  This
129 # might be nice for playing sounds or providing any other type of notification.
130 #
131 #gotmailcmd=play gotmail.wav
132
133 # If IMAGECMD is defined, users can hit 'I' to view images attached to a
134 # message.  (Do not enable this command for public clients.)
135 #
136 # Possible image viewers follow
137
138 # xdg-open - on Linux systems with the Portland API's installed, this ought
139 # to open the image in the user's preferred viewer.
140 #imagecmd=xdg-open "%s"
141 #
142 # Preview on Mac OS X
143 #imagecmd=/Applications/Preview.app/Contents/MacOS/Preview "%s"
144
145
146 # COMMAND SET CONFIGURATION
147 #
148 # All lines starting with "cmd=" are considered to be commands.  This allows
149 # mapping of keytstrokes to various functions of the client.
150 #
151 # Format of each line:
152 # cmd_num,access,keystrokes
153 #
154 # Keep a copy of the original version of this file around as a reference
155 # for the command numbers.  They are not documented anywhere else.
156 #
157 # Access is:  0 (all users), 1 (admins or room admins), 2 (admins only).
158 # Please be aware that it is futile to attempt to gain unauthorized access to
159 # the administrative functions of the system by changing all the access levels
160 # to 0.  If you do this, you'll simply be able to enter a lot of commands that
161 # will fail at the server ... so don't bother trying. :-)
162 #
163 # The actual key to be pressed should be prefaced with an & (ampersand)
164 # character.  Ampersands are interesting and useful characters and you should
165 # use them as much as possible.  Commands requiring more than one keystroke
166 # should be entered as multiple fields.
167 #
168 # If the last keystroke string ends with a : (colon), then the command
169 # will finish by allowing the user to enter a string.
170 #
171 # In keystroke names, the string ^r will be replaced by the name of the
172 # current room.  The string ^c will be replaced by a comma.
173 #
174 # Commands may contain no more than five keystrokes.
175 #
176 # Note that the following characters are illegal in commands:
177 #  , (comma)    : (colon)     ^ (caret)     & (ampersand)
178 #
179 #
180 cmd=1,0,&? (Help)
181 cmd=1,0,&Help
182 cmd=3,0,&Chat
183 #
184 # If you want to use an external editor by default, set <E>nter message
185 # to command #46 (external editor) instead of #4 (built-in editor).
186 cmd=4,0,&Enter message
187 #
188 cmd=5,0,&Goto
189 cmd=6,0,&Skip ^r
190 cmd=7,0,&Zap (forget) room
191 cmd=8,0,&Known rooms
192 cmd=9,0,&Last five msgs
193 cmd=10,0,read &Forward
194 cmd=11,0,read &Reverse
195 cmd=12,0,read &Old
196 cmd=13,0,read &New
197 cmd=14,0,read &Directory
198 cmd=15,0,&Terminate
199 cmd=16,0,&Ungoto
200 cmd=95,0,&.,&Ungoto:
201 cmd=17,0,&Who is online
202 cmd=47,0,&Abandon ^r^c goto...
203 #cmd=90,0,&Abandon ^r^c goto:
204 cmd=50,0,toggle e&Xpert mode
205 cmd=49,0,read &Info file
206 cmd=18,2,&! <shell>
207 cmd=19,0,&.,list &Zapped rooms
208 cmd=52,0,&.,&Skip ^r^c goto:
209 cmd=56,0,&Page a user
210 cmd=58,0,&Mail
211 cmd=84,0,&Quiet mode
212 #
213 # We implement both <.G>oto and <J>ump commands which do the same thing, in
214 # order to please a wider audience of users.  Remove one if you want to.
215 #
216 cmd=20,0,&Jump:
217 cmd=20,0,&.,&Goto:
218 #
219 cmd=21,0,&.,&Help:
220 cmd=22,1,&.,&Admin,&Kill this room
221 cmd=23,1,&.,&Admin,&Edit this room
222 cmd=24,0,&.,&Admin,&Who knows room
223 cmd=25,2,&.,&Admin,&User,&Edit
224 cmd=96,2,&.,&Admin,&User,&Delete
225 cmd=26,2,&.,&Admin,&Validate new users
226 cmd=48,1,&.,&Admin,enter &Info file
227 cmd=27,0,&.,&Admin,&Room,&Invite user
228 cmd=28,0,&.,&Admin,&Room,&Kick out user
229 cmd=51,1,&.,&Admin,&File,&Delete
230 cmd=54,1,&.,&Admin,&File,&Move
231 cmd=70,2,&.,&Admin,&Message edit:
232 cmd=78,1,&.,&Admin,&Post
233 cmd=80,2,&.,&Admin,&System configuration,&General
234 cmd=82,2,&.,&Admin,&System configuration,&Internet
235 cmd=85,2,&.,&Admin,&Terminate server,&Now
236 cmd=86,2,&.,&Admin,&Terminate server,&Scheduled
237 cmd=87,1,&.,&Admin,mailing &List recipients
238 cmd=94,1,&.,&Admin,mailing list &Digest recipients
239
240 cmd=29,0,&.,&Terminate,and &Quit
241 cmd=30,0,&.,&Terminate,and &Stay online
242
243 # The 'read user listing' command accepts two different formats.  The one with
244 # the trailing colon allows the user to enter a few characters to search for
245 # users with a partial match.
246 #
247 #cmd=32,0,&.,&Read,&User listing
248 cmd=32,0,&.,&Read,&User listing:
249
250 cmd=33,0,&.,&Read,&Textfile formatted
251 #
252 # Command 55 allows the user to save a downloaded file directly to the
253 # computer running the client software.  It is appropriate for a copy of
254 # this client running on the user's own computer.  It is NOT appropriate for
255 # public copies of the client that people will be dialing into.
256 #
257 #cmd=55,0,&.,&Read,&File
258 #
259 # Commands 34, 43, and 45 are appropriate for public copies of the client for
260 # dialup use.  They transfer downloaded files to a temporary file and then
261 # send them along to a dialup user using the popular protocols.
262 #
263 # cmd=34,0,&.,&Read,file using &Xmodem
264 # cmd=43,0,&.,&Read,file using &Ymodem
265 # cmd=45,0,&.,&Read,file using &Zmodem
266 cmd=31,0,&.,&Read,&File unformatted
267 #
268 cmd=13,0,&.,&Read,&New messages
269 cmd=12,0,&.,&Read,&Old msgs reverse
270 cmd=71,0,&.,read &Last:
271 cmd=9,0,&.,&Read,&Last five msgs
272 cmd=14,0,&.,&Read,&Directory
273 cmd=49,0,&.,&Read,&Info file
274 cmd=114,0,&.,&Read,&Configuration
275 cmd=115,0,&.,&Read,&System info
276 cmd=35,0,&.,&Enter,&Password
277 cmd=36,0,&.,&Enter,&ASCII message
278 cmd=37,0,&.,&Enter,&Configuration
279 cmd=38,0,&.,&Enter,a new &Room
280 cmd=39,0,&.,&Enter,&Textfile
281 # cmd=40,0,&.,&Enter,file using &Xmodem
282 # cmd=42,0,&.,&Enter,file using &Ymodem
283 # cmd=44,0,&.,&Enter,file using &Zmodem
284 #
285 # Command 57 is the local-file-upload command for users with their own
286 # copy of the clientware.  Commands 72-73 are for image uploads.
287 #
288 #cmd=57,0,&.,&Enter,&File
289 #cmd=72,0,&.,&Enter,&Image,user &Picture
290 #cmd=73,0,&.,&Enter,&Image,&Room banner
291 #
292 cmd=41,0,&.,&Enter,re&Gistration
293 cmd=4,0,&.,&Enter,&Message
294 cmd=127,0,&.,&Enter,remote POP&3 accounts
295 cmd=128,0,&.,&Enter,&XML/RSS feed retrieval
296
297 # If you have an external editor defined, it will appear on command 46.
298 cmd=46,0,&.,&Enter,message with &Editor
299
300 # If you have multiple editors defined, they will appear on
301 # commands 46, 101, 102, 103... up to MAX_EDITORS (5 by default)
302 #cmd=101,0,&.,&Enter,message with &VI
303 #cmd=102,0,&.,&Enter,message with &Nano
304
305 cmd=59,0,&;,&Configure floor mode
306 cmd=60,0,&;,&Goto floor:
307 cmd=60,0,&.,&Enter,&Floor:
308 cmd=61,0,&;,&Skip to floor:
309 cmd=62,0,&;,&Zap (forget) floor
310 cmd=63,2,&;,&Admin,&Create floor
311 cmd=64,2,&;,&Admin,&Edit this floor
312 cmd=65,2,&;,&Admin,&Kill this floor
313 cmd=68,0,&;,&Known rooms
314 cmd=66,0,&.,&Enter,&Bio
315 cmd=67,0,&.,&Read,&Bio
316
317 cmd=79,0,&.,&Wholist,&Long
318 cmd=91,0,&.,&Wholist,&Active
319 cmd=93,0,&.,&Wholist,&Stealth mode
320
321 cmd=110,0,&+Next room
322 cmd=111,0,&-Previous room
323 cmd=112,0,&>Next floor
324 cmd=113,0,&<Previous floor
325 cmd=116,0,&.,skip to &+Next room
326 cmd=117,0,&.,skip to &-Previous room
327 cmd=118,0,&.,skip to &>Next floor
328 cmd=119,0,&.,skip to &<Previous floor
329
330 cmd=120,0,&.,&Known,&Anonymous rooms
331 cmd=121,0,&.,&Known,&Directory rooms
332 cmd=68,0,&.,&Known,&Floors
333 cmd=49,0,&.,&Known,room &Info
334 cmd=122,0,&.,&Known,&Match rooms:
335 cmd=123,0,&.,&Known,preferred &Only rooms
336 cmd=124,0,&.,&Known,&Private rooms
337 cmd=125,0,&.,&Known,&Read only rooms
338 cmd=19,0,&.,&Known,&Zapped rooms
339
340 #
341 # Command 69 allows the user to enter a server command directly.  It is
342 # primarily for testing and not intended for general use.  Usually there
343 # is no need to enable it.
344 cmd=69,0,&@Server command:
345 #
346 # end of command set configuration
347 #