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