advanced.xml 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <section id="ch_advanced">
  3. <title>Advanced features</title>
  4. <section id="adv_actions">
  5. <title>Actions</title>
  6. <para>
  7. Actions allow you to use all the power of the Unix command-line with
  8. your emails. You can define various commands, taking parameters such
  9. as the current email file, a list of emails, the currently selected
  10. text, and so on. In this way, you'll be able to perform various tasks
  11. such as editing a raw mail in your text editor,
  12. <emphasis>hide</emphasis> what you mean using ROT-13, apply patches
  13. contained in emails directly, and so on. The only limit is your
  14. imagination. You can create and configure Actions via the
  15. <quote>/Configuration/Actions...</quote> menu.
  16. </para>
  17. <para>
  18. The <quote>Tools/Actions/</quote> menu will contain one submenu
  19. item for each action that you have created. When you have selected
  20. one or more messages in the Message List, or are viewing a message
  21. in the Message View, selecting one of these menu items will invoke
  22. the action, and, depending on how it was defined, will pass the
  23. message(s) to it.
  24. </para>
  25. <para>
  26. Additionally, it is possible to add toolbar entries for your
  27. actions. To do so, open the <quote>Configuration/Preferences</quote>
  28. menu and select <quote>Toolbars/Main Window</quote>.
  29. Select <quote>User Action</quote> in the <quote>Item type</quote>
  30. dropdown menu, then select the Action in the <quote>Event executed on click</quote>
  31. dropdown menu, and click the <quote>Icon</quote> button to select the
  32. icon that you want to use.
  33. </para>
  34. <blockquote>
  35. <example>
  36. <title>Simple <quote>Open With...</quote></title>
  37. <variablelist>
  38. <varlistentry>
  39. <term>
  40. Menu name: <emphasis>Open with/kate</emphasis>
  41. Command Line: <command>kate %p</command>
  42. </term>
  43. <listitem>
  44. <para>
  45. Opens the file of the selected decoded MIME part
  46. (<emphasis>%p</emphasis>) with the <emphasis>kate</emphasis> text
  47. editor.
  48. </para>
  49. </listitem>
  50. </varlistentry>
  51. </variablelist>
  52. </example>
  53. <example>
  54. <title>Spam management using <ulink
  55. url="http://bogofilter.sourceforge.net/">Bogofilter</ulink>
  56. </title>
  57. <variablelist>
  58. <varlistentry>
  59. <term>
  60. Menu name: <emphasis>Bogofilter/Mark as Ham</emphasis>
  61. Command Line: <command>bogofilter -n -v -B "%f"</command>
  62. </term>
  63. <listitem>
  64. <para>
  65. Marks the currently selected mails (<emphasis>%f</emphasis>) as
  66. <quote>not spam</quote> using <emphasis>Bogofilter</emphasis>.
  67. </para>
  68. </listitem>
  69. </varlistentry>
  70. <varlistentry>
  71. <term>
  72. Menu name: <emphasis>Bogofilter/Mark as Spam</emphasis>
  73. Command Line: <command>bogofilter -s -v -B "%f"</command>
  74. </term>
  75. <listitem>
  76. <para>
  77. Marks the currently selected mails (<emphasis>%f</emphasis>) as
  78. <quote>spam</quote> using <emphasis>Bogofilter</emphasis>.
  79. </para>
  80. </listitem>
  81. </varlistentry>
  82. </variablelist>
  83. </example>
  84. <example>
  85. <title>Search Google using an external script</title>
  86. <variablelist>
  87. <varlistentry>
  88. <term>
  89. Menu name: <emphasis>Search/Google</emphasis>
  90. Command Line: <command>|/path/to/google_search.pl</command>
  91. </term>
  92. <listitem>
  93. <para>
  94. Searches Google for the currently selected text
  95. (<emphasis>|</emphasis>) using the external script <emphasis><ulink
  96. url="http://www.claws-mail.org/tools.php"
  97. >google_search.pl</ulink></emphasis>.
  98. </para>
  99. </listitem>
  100. </varlistentry>
  101. </variablelist>
  102. </example>
  103. </blockquote>
  104. </section>
  105. <section id="adv_templates">
  106. <title>Templates</title>
  107. <para>
  108. Templates are used in composition windows, and act as a model for
  109. emails. Templates can be filled with static text and dynamic parts,
  110. such as the original sender's name (<quote>Dear %N, ...</quote>),
  111. the date, etc. When applying a template, the dynamic fields will be
  112. replaced with the relevant values. You can configure templates via
  113. the <quote>Tools</quote> menu.
  114. </para><para>
  115. When applying a template, you will be asked to <quote>Insert</quote>
  116. or <quote>Replace</quote>, the difference between replacing and
  117. inserting is only concerned with the message body.
  118. <quote>Replace</quote> will replace the current composition window
  119. message body with the body defined in the template, clearing it if
  120. the template body is empty. <quote>Insert</quote> will insert
  121. the template's body, if set, at the current cursor position.
  122. </para><para>
  123. Whether you choose to Insert or Replace, any To, Cc or Bcc field
  124. that is defined in the template will be appended to the compose
  125. window's recipients list. If it is defined, the template's Subject
  126. will always replace the compose window's Subject.
  127. </para><para>
  128. Symbols can be used in all parts of the templates and will be
  129. substituted with their respective dynamic value if possible, otherwise
  130. no value will be used. This often makes more sense if you apply a
  131. template when replying or forwarding, otherwise most of the symbols
  132. value will be undefined. There is no restriction on which symbols can
  133. be used in template parts, even if inserting the body (%M or %Q) may
  134. make no sense in common situations.
  135. </para><para>
  136. When applying a template, the body is processed first, then the To, Cc,
  137. Bcc and Subject fields follow.
  138. </para><para>
  139. Further information and examples of usage can be found in the
  140. user-contributed FAQ on the Claws Mail website <ulink
  141. url="http://www.claws-mail.org/faq/"
  142. >http://www.claws-mail.org/faq/</ulink>.
  143. </para>
  144. </section>
  145. <section id="adv_processing">
  146. <title>Processing</title>
  147. <para>
  148. Processing rules are the same as Filtering rules, except that they are
  149. applied when entering a folder or when manually applied from a folder's
  150. context menu and apply only to this folder. You can use them to automatically
  151. move old mails into an archive folder, or for further dispatching of
  152. emails, and more. You can set each folder's Processing rules by
  153. right-clicking on it.
  154. </para><para>
  155. Processing rules are accompanied by Pre-processing and Post-processing
  156. rules. Like Processing rules, they apply when opening a folder or manually
  157. applying them from a folder's context menu, but like Filtering rules,
  158. they are shared across all folders. You can configure them from the
  159. <quote>Tools</quote> menu. Pre-processing rules are executed before the
  160. folder's specific Processing rules, while Post-processing rules are executed
  161. afterwards.
  162. </para>
  163. </section>
  164. <section id="adv_colour_labels">
  165. <title>Colour Labels</title>
  166. <para>
  167. Colour labels can be used to denote a message as having a particular
  168. significance. To set a colour label simply right-click a message in the
  169. Message List and use the <quote>Color label</quote> submenu.
  170. </para><para>
  171. Colour labels are user-configurable. Both the colour and the label can
  172. be set by the user. Preferences can be found on the
  173. <quote>Configuration/Preferences/Display/Colors</quote> page.
  174. </para>
  175. </section>
  176. <section id="adv_tags">
  177. <title>Tags</title>
  178. <para>
  179. Tags are short text notes which may be set on messages. They are useful
  180. for classifying messages with your own words. These tags can be used
  181. later to find the mails with Quick Search or to manage them with
  182. filtering or processing rules, for example.
  183. </para><para>
  184. Tagged messages are displayed with a yellow background at the top of
  185. the Message View. This line shows all tags associated with the
  186. message. You can enable the "Tags" column in the Message List, so
  187. tagged items can be seen without having to open the message.
  188. </para><para>
  189. Setting of tags is done by right-clicking on the message in the Message
  190. List or by the corresponding option in Message menu. A panel with the
  191. existing tags is shown and you can select some of them or just add a
  192. new one. Removal of existing tags is also allowed, of course.
  193. </para><para>
  194. Once tags exist it's even easier, as the context menu allows you to
  195. set and unset tags with just one click to the selected messages.
  196. Mixed selections of tagged and untagged messages are allowed, and
  197. Claws Mail is clever enough to do what you want to do in any case.
  198. </para>
  199. </section>
  200. <section id="adv_ml_support">
  201. <title>Mailing-List support</title>
  202. <para>
  203. Claws Mail offers mailing-list support from the
  204. <quote>Message/Mailing-List/</quote> submenu. When you have a
  205. mailing-list message selected, the submenu allows you to quickly
  206. initiate subscribing, unsubscribing, posting, getting help, contacting
  207. the list owner, and viewing the list archive; either by opening a new
  208. Compose window with the appropriate address pre-filled, or by opening
  209. the URL in your web browser.
  210. </para>
  211. </section>
  212. <section id="adv_plugins">
  213. <title>Plugins</title>
  214. <para>
  215. Plugins are the mechanism for extending Claws Mail' capabilities.
  216. For example, imagine that you want to store your mails in a remote
  217. <acronym>SQL</acronym> database. In most mailers out there this is
  218. simply impossible without reworking the internals of the mailer. With
  219. Claws Mail you can simply write a plugin to achieve the task.
  220. </para><para>
  221. This is just an example of the possibilities. A good number of plugins
  222. developed for Claws Mail already exist, and more are to come. The
  223. <link linkend="ch_plugins">Extending Claws Mail section</link>
  224. gives details of them.
  225. </para>
  226. </section>
  227. <section id="deploying">
  228. <title>Deploying Claws Mail</title>
  229. <para>
  230. The initial configuration wizard tries to guess various fields using
  231. information gathered from the system, such as username, hostname, and
  232. more. As it is oriented towards general use, the default values often
  233. have to be fixed. However, this wizard is customisable, in a manner
  234. designed to allow system administrators to deploy Claws Mail easily
  235. over various users of one machine, or even over multiple machines
  236. installed via some replication tool.
  237. </para><para>
  238. The first part consists of creating a wizard configuration template
  239. and setting the various default parameters of a new Claws Mail
  240. installation.
  241. </para>
  242. <itemizedlist>
  243. <listitem>
  244. <para>
  245. Start with a user who does not have a <filename class="directory"
  246. >~/.claws-mail</filename> directory, ideally a new user.
  247. </para>
  248. </listitem>
  249. <listitem>
  250. <para>
  251. Start Claws Mail and go through the wizard. The values you fill in
  252. will be of no use for the future deployment, so you can click
  253. next-next-next.
  254. </para>
  255. </listitem>
  256. <listitem>
  257. <para>
  258. Once the wizard is finished and you have Claws Mail' main window
  259. opened, configure the various defaults you want to have in the master.
  260. You can load plugins, add people or LDAP servers in the addressbook,
  261. create filtering rules, and so on.
  262. </para>
  263. </listitem>
  264. <listitem>
  265. <para>
  266. If needed, and if the deployed Claws Mail will use MH folders, you
  267. can create subdirectories in the mailbox.
  268. </para>
  269. </listitem>
  270. <listitem>
  271. <para>
  272. Next, quit Claws Mail.
  273. </para>
  274. </listitem>
  275. <listitem>
  276. <para>
  277. Now, edit the newly created wizard template file,
  278. <filename>~/.claws-mail/accountrc.tmpl</filename>. In this file,
  279. you will see different variables, corresponding to the wizard's fields.
  280. You can leave some commented, in which case the usual default will be
  281. used, or specify values or variables. Not all fields can contain
  282. variables; for example, <literal>smtpauth</literal>,
  283. <literal>smtpssl</literal> and <literal>recvssl</literal> are booleans,
  284. either 0 or 1, and <literal>recvtype</literal> is an integer value. The
  285. other fields, like <literal>name</literal>, <literal>email</literal>,
  286. or <literal>recvuser</literal>, are parsed by the wizard and the
  287. variables they contain are replaced by values. This allows you to
  288. specify everything as needed for your site, even if you have strange
  289. server names or server logins.
  290. </para>
  291. </listitem>
  292. <listitem>
  293. <para>
  294. Save this file, and delete both
  295. <filename>~/.claws-mail/accountrc</filename>, (which contains your
  296. dummy account) and
  297. <filename>~/.claws-mail/folderlist.xml</filename>, (so that the
  298. folder tree will be correctly parsed for new users). Recursively copy
  299. <filename class="directory">.claws-mail</filename> to
  300. <filename class="directory">/etc/skel/</filename>; if the deployed
  301. Claws Mail will use MH folders, also copy the created
  302. <filename class="directory">Mail</filename> directory. chown all of
  303. <filename class="directory">/etc/skel/.claws-mail</filename>
  304. and <filename class="directory">/etc/skel/Mail</filename> to
  305. <literal>root:root</literal> for security reasons.
  306. </para>
  307. </listitem>
  308. <listitem>
  309. <para>
  310. Test! Create a new user, login as that user, run Claws Mail. If you
  311. filled everything as you wanted, this user will just have to fill in
  312. his passwords.
  313. </para>
  314. </listitem>
  315. <listitem>
  316. <para>
  317. Now, if you're creating a master for a site-wide deployment, you can
  318. continue with this process. If you were just doing it for one machine,
  319. you're done!
  320. </para>
  321. </listitem>
  322. </itemizedlist>
  323. <para>
  324. Here are the different variables of the <filename>accountrc.tmpl</filename>
  325. file:
  326. </para>
  327. <variablelist>
  328. <varlistentry>
  329. <term><literal>domain</literal></term>
  330. <listitem>
  331. <para>
  332. Your domain name (example.com). If not set, it'll be extracted from the
  333. hostname.
  334. </para>
  335. </listitem>
  336. </varlistentry>
  337. <varlistentry>
  338. <term><literal>name</literal></term>
  339. <listitem>
  340. <para>
  341. The user's name. If not set, it'll be extracted from Unix login
  342. information, which is usually ok.
  343. </para>
  344. </listitem>
  345. </varlistentry>
  346. <varlistentry>
  347. <term><literal>email</literal></term>
  348. <listitem>
  349. <para>
  350. The user's email. If not set, it'll be extracted from
  351. <literal>$name</literal> and <literal>$domain</literal>.
  352. </para>
  353. </listitem>
  354. </varlistentry>
  355. <varlistentry>
  356. <term><literal>organization</literal></term>
  357. <listitem>
  358. <para>
  359. Your organization. If not set, it'll be empty.
  360. </para>
  361. </listitem>
  362. </varlistentry>
  363. <varlistentry>
  364. <term><literal>smtpserver</literal></term>
  365. <listitem>
  366. <para>
  367. The SMTP server to use. If not set, it'll be
  368. <literal>smtp.$domain</literal>.
  369. </para>
  370. </listitem>
  371. </varlistentry>
  372. <varlistentry>
  373. <term><literal>smtpauth</literal></term>
  374. <listitem>
  375. <para>
  376. 0 or 1. Whether to authenticate on the SMTP server. If not set, it'll
  377. be 0.
  378. </para>
  379. </listitem>
  380. </varlistentry>
  381. <varlistentry>
  382. <term><literal>smtpuser</literal></term>
  383. <listitem>
  384. <para>
  385. The login on the SMTP server. If not set, it'll be empty (same login as
  386. for reception will be used).
  387. </para>
  388. </listitem>
  389. </varlistentry>
  390. <varlistentry>
  391. <term><literal>smtppass</literal></term>
  392. <listitem>
  393. <para>
  394. The password on the SMTP server. If not set, it'll be empty (if
  395. <literal>smtppass</literal> is empty but <literal>smtpuser</literal> is
  396. not, the user will be asked for the password).
  397. </para>
  398. </listitem>
  399. </varlistentry>
  400. <varlistentry>
  401. <term><literal>recvtype</literal></term>
  402. <listitem>
  403. <para>
  404. The type of server to receive from. 0 for POP3, 3 for IMAP4, 5 for a
  405. local MBOX file. If not set, it'll be 0 (POP3).
  406. </para>
  407. </listitem>
  408. </varlistentry>
  409. <varlistentry>
  410. <term><literal>recvserver</literal></term>
  411. <listitem>
  412. <para>
  413. The reception server. If not set, it'll be
  414. <literal>(pop|imap).$domain</literal>, depending on
  415. <literal>$recvtype</literal>.
  416. </para>
  417. </listitem>
  418. </varlistentry>
  419. <varlistentry>
  420. <term><literal>recvuser</literal></term>
  421. <listitem>
  422. <para>
  423. The login on the reception server. If not set, it'll be extracted from
  424. the Unix login information.
  425. </para>
  426. </listitem>
  427. </varlistentry>
  428. <varlistentry>
  429. <term><literal>recvpass</literal></term>
  430. <listitem>
  431. <para>
  432. The password on the reception server. If not set, it'll be empty (the
  433. user will be asked for it once per session).
  434. </para>
  435. </listitem>
  436. </varlistentry>
  437. <varlistentry>
  438. <term><literal>imapdir</literal></term>
  439. <listitem>
  440. <para>
  441. The IMAP subdirectory. If not set, it'll be empty, which is often
  442. sufficient.
  443. </para>
  444. </listitem>
  445. </varlistentry>
  446. <varlistentry>
  447. <term><literal>mboxfile</literal></term>
  448. <listitem>
  449. <para>
  450. The MBOX file to receive from if <literal>$recvtype</literal> is 5.
  451. If not set, <literal>/var/mail/$LOGIN</literal>.
  452. </para>
  453. </listitem>
  454. </varlistentry>
  455. <varlistentry>
  456. <term><literal>mailbox</literal></term>
  457. <listitem>
  458. <para>
  459. The MH mailbox to store mail in (for <literal>$recvtype</literal> 0 or
  460. 5). If not set, it'll be <quote>Mail</quote>.
  461. </para>
  462. </listitem>
  463. </varlistentry>
  464. <varlistentry>
  465. <term><literal>smtpssl</literal></term>
  466. <listitem>
  467. <para>
  468. 0 or 1. Whether to use SSL for sending mail. If not set, it'll be 0.
  469. </para>
  470. </listitem>
  471. </varlistentry>
  472. <varlistentry>
  473. <term><literal>recvssl</literal></term>
  474. <listitem>
  475. <para>
  476. 0 or 1. Whether to use SSL for receiving mail. If not set, it'll be 0.
  477. </para>
  478. </listitem>
  479. </varlistentry>
  480. </variablelist>
  481. <para>
  482. Here are the different variables you can use in the
  483. <literal>domain</literal>, <literal>name</literal>,
  484. <literal>email</literal>, <literal>organization</literal>,
  485. <literal>smtpserver</literal>, <literal>smtpuser</literal>,
  486. <literal>smtppass</literal>, <literal>recvserver</literal>,
  487. <literal>recvuser</literal>, <literal>recvpass</literal>,
  488. <literal>imapdir</literal>, <literal>mboxfile</literal> and
  489. <literal>mailbox</literal> fields:
  490. </para>
  491. <variablelist>
  492. <varlistentry>
  493. <term><literal>$DEFAULTDOMAIN</literal></term>
  494. <listitem>
  495. <para>
  496. The domain name as extracted from Unix hostname information.
  497. Often wrong.
  498. </para>
  499. </listitem>
  500. </varlistentry>
  501. <varlistentry>
  502. <term><literal>$DOMAIN</literal></term>
  503. <listitem>
  504. <para>
  505. The domain name as set in the domain variable, the first of the
  506. template file.
  507. </para>
  508. </listitem>
  509. </varlistentry>
  510. <varlistentry>
  511. <term><literal>$USERNAME</literal></term>
  512. <listitem>
  513. <para>The user's real name.</para>
  514. </listitem>
  515. </varlistentry>
  516. <varlistentry>
  517. <term><literal>$LOGIN</literal></term>
  518. <listitem>
  519. <para>The user's Unix login.</para>
  520. </listitem>
  521. </varlistentry>
  522. <varlistentry>
  523. <term><literal>$NAME_MAIL</literal></term>
  524. <listitem>
  525. <para>
  526. The user's real name as set in the name variable of the template field,
  527. in lowercase and with spaces replaced by dots.
  528. <quote>Colin Leroy</quote> becomes <quote>colin.leroy</quote>.
  529. </para>
  530. </listitem>
  531. </varlistentry>
  532. <varlistentry>
  533. <term><literal>$EMAIL</literal></term>
  534. <listitem>
  535. <para>
  536. The email address as set in the email variable of the template field.
  537. </para>
  538. </listitem>
  539. </varlistentry>
  540. </variablelist>
  541. <para>
  542. Be sure not to use a variable before defining it.
  543. </para>
  544. </section>
  545. <section id="adv_hidden">
  546. <title>Hidden preferences</title>
  547. <para>
  548. There are a number of hidden preferences in Claws Mail, preferences
  549. that some users who we wanted to please couldn't live without, but
  550. which did not have a place in the GUI in our opinion. You can find the
  551. following, and change them while Claws Mail is not running, in
  552. <filename>~/.claws-mail/clawsrc</filename>.
  553. </para>
  554. <para>
  555. There's a small tool written in Perl-GTK called Clawsker which
  556. provides a user-friendly GUI for tweaking these settings instead of
  557. direct editing of <filename>clawsrc</filename>. You can read more
  558. about it on the <ulink url="http://www.claws-mail.org/clawsker">Clawsker
  559. page</ulink>.
  560. </para>
  561. <variablelist>
  562. <varlistentry>
  563. <term><literal>addressbook_use_editaddress_dialog</literal></term>
  564. <listitem>
  565. <para>
  566. Use a separate dialogue to edit a person's details.
  567. '0' will use a form embedded in the addressbook's main window.
  568. </para>
  569. </listitem>
  570. </varlistentry>
  571. <varlistentry>
  572. <term><literal>bold_unread</literal></term>
  573. <listitem>
  574. <para>
  575. Show unread messages in the Message List using a bold font.
  576. </para>
  577. </listitem>
  578. </varlistentry>
  579. <varlistentry>
  580. <term><literal>cache_max_mem_usage</literal></term>
  581. <listitem>
  582. <para>
  583. The maximum amount of memory to use to cache messages, in kB.
  584. </para>
  585. </listitem>
  586. </varlistentry>
  587. <varlistentry>
  588. <term><literal>cache_min_keep_time</literal></term>
  589. <listitem>
  590. <para>
  591. The minimum time in minutes to keep a cache in memory. Caches more
  592. recent than this time will not be freed, even if the memory usage is
  593. too high.
  594. </para>
  595. </listitem>
  596. </varlistentry>
  597. <varlistentry>
  598. <term><literal>compose_no_markup</literal></term>
  599. <listitem>
  600. <para>
  601. Don't use bold and italic text in Compose dialogue's account selector.
  602. </para>
  603. </listitem>
  604. </varlistentry>
  605. <varlistentry>
  606. <term><literal>emphasis_color</literal></term>
  607. <listitem>
  608. <para>
  609. The colour used for the X-Mailer line when its value is Claws Mail.
  610. </para>
  611. </listitem>
  612. </varlistentry>
  613. <varlistentry>
  614. <term><literal>enable_dotted_lines</literal></term>
  615. <listitem>
  616. <para>
  617. Use the <emphasis>old</emphasis> dotted line look in the main window
  618. GtkTreeView components, (Folder List and Message List), instead of the
  619. <emphasis>modern</emphasis> lineless look.
  620. </para>
  621. </listitem>
  622. </varlistentry>
  623. <varlistentry>
  624. <term><literal>enable_hscrollbar</literal></term>
  625. <listitem>
  626. <para>
  627. Enable the horizontal scrollbar in the Message List.
  628. </para>
  629. </listitem>
  630. </varlistentry>
  631. <varlistentry>
  632. <term><literal>enable_swap_from</literal></term>
  633. <listitem>
  634. <para>
  635. Display the sender's email address in the To column of the
  636. Sent folder instead of the recipient's.
  637. </para>
  638. </listitem>
  639. </varlistentry>
  640. <varlistentry>
  641. <term><literal>folderview_vscrollbar_policy</literal></term>
  642. <listitem>
  643. <para>
  644. Specify the policy of vertical scrollbar of Folder List.
  645. '0' is always shown, '1' is automatic, '2' is always hidden.
  646. </para>
  647. </listitem>
  648. </varlistentry>
  649. <varlistentry>
  650. <term><literal>hover_timeout</literal></term>
  651. <listitem>
  652. <para>
  653. Time in milliseconds that will cause a folder tree to expand
  654. when the mouse cursor is held over it during drag 'n' drop.
  655. </para>
  656. </listitem>
  657. </varlistentry>
  658. <varlistentry>
  659. <term><literal>live_dangerously</literal></term>
  660. <listitem>
  661. <para>
  662. Don't ask for confirmation before definitive deletion of emails.
  663. </para>
  664. </listitem>
  665. </varlistentry>
  666. <varlistentry>
  667. <term><literal>log_error_color</literal></term>
  668. <term><literal>log_in_color</literal></term>
  669. <term><literal>log_msg_color</literal></term>
  670. <term><literal>log_out_color</literal></term>
  671. <term><literal>log_warn_color</literal></term>
  672. <term><literal>log_status_ok_color</literal></term>
  673. <term><literal>log_status_nok_color</literal></term>
  674. <term><literal>log_status_skip_color</literal></term>
  675. <listitem>
  676. <para>
  677. The colours used in the log window.
  678. </para>
  679. </listitem>
  680. </varlistentry>
  681. <varlistentry>
  682. <term><literal>msgview_date_format</literal></term>
  683. <listitem>
  684. <para>
  685. 0 or 1. Use the same user-defined date format in the Message
  686. View as is used in the Message List. Default is 0, turned off.
  687. </para>
  688. </listitem>
  689. </varlistentry>
  690. <varlistentry>
  691. <term><literal>outgoing_fallback_to_ascii</literal></term>
  692. <listitem>
  693. <para>
  694. 0 or 1. The outgoing encoding of a message will use 7bit US-ASCII
  695. whenever it is suitable for the message content, ignoring the
  696. <quote>Outgoing encoding</quote> option unless it is necessary. Turning
  697. this option off forces the user-defined encoding to be used, regardless
  698. of message content. Default is 1, turned on.
  699. </para>
  700. </listitem>
  701. </varlistentry>
  702. <varlistentry>
  703. <term><literal>primary_paste_unselects</literal></term>
  704. <listitem>
  705. <para>
  706. 0 or 1. Causes the primary buffer to be cleared and the insertion
  707. point to be repositioned when the middle mouse button is used
  708. for pasting text. Default is 0, turned off.
  709. </para>
  710. </listitem>
  711. </varlistentry>
  712. <varlistentry>
  713. <term><literal>respect_flowed_format</literal></term>
  714. <listitem>
  715. <para>
  716. 0 or 1. Respect format=flowed on text/plain message parts. This
  717. will cause some mails to have long lines, but will fix some URLs
  718. that would otherwise be wrapped. Default is 0, turned off.
  719. </para>
  720. </listitem>
  721. </varlistentry>
  722. <varlistentry>
  723. <term><literal>save_parts_readwrite</literal></term>
  724. <listitem>
  725. <para>
  726. Saves temporary files when opening attachment with write bit set.
  727. </para>
  728. </listitem>
  729. </varlistentry>
  730. <varlistentry>
  731. <term><literal>show_compose_margin</literal></term>
  732. <listitem>
  733. <para>
  734. 0 or 1. Adds margins to the message text area in the Compose window.
  735. Default is 0, turned off.
  736. </para>
  737. </listitem>
  738. </varlistentry>
  739. <varlistentry>
  740. <term><literal>show_inline_attachments</literal></term>
  741. <listitem>
  742. <para>
  743. 0 or 1. Show inline attachments in MimeView.
  744. Default is 1, turned on.
  745. </para>
  746. </listitem>
  747. </varlistentry>
  748. <varlistentry>
  749. <term><literal>skip_ssl_cert_check</literal></term>
  750. <listitem>
  751. <para>
  752. Disables the verification of SSL certificates.
  753. </para>
  754. </listitem>
  755. </varlistentry>
  756. <varlistentry>
  757. <term><literal>statusbar_update_step</literal></term>
  758. <listitem>
  759. <para>
  760. Update stepping in progress bars.
  761. </para>
  762. </listitem>
  763. </varlistentry>
  764. <varlistentry>
  765. <term><literal>stripes_color_offset</literal></term>
  766. <listitem>
  767. <para>
  768. Specify the value to use when creating alternately coloured lines in
  769. GtkTreeView components. The smaller the value, the less visible the
  770. difference in the alternating colours of the lines.
  771. </para>
  772. </listitem>
  773. </varlistentry>
  774. <varlistentry>
  775. <term><literal>summary_from_show</literal></term>
  776. <listitem>
  777. <para>
  778. Controls the data displayed in the From column in the Message List.
  779. Default value 0 displays name, 1 displays address and 2 displays both
  780. name and address.
  781. </para>
  782. </listitem>
  783. </varlistentry>
  784. <varlistentry>
  785. <term><literal>textview_cursor_visible</literal></term>
  786. <listitem>
  787. <para>
  788. Display the cursor in the message view.
  789. </para>
  790. </listitem>
  791. </varlistentry>
  792. <varlistentry>
  793. <term><literal>thread_by_subject_max_age</literal></term>
  794. <listitem>
  795. <para>
  796. Number of days to include a message in a thread when using
  797. <quote>Thread using subject in addition to standard headers</quote>.
  798. </para>
  799. </listitem>
  800. </varlistentry>
  801. <varlistentry>
  802. <term><literal>toolbar_detachable</literal></term>
  803. <listitem>
  804. <para>
  805. Show handles in the toolbars.
  806. </para>
  807. </listitem>
  808. </varlistentry>
  809. <varlistentry>
  810. <term><literal>two_line_vertical</literal></term>
  811. <listitem>
  812. <para>
  813. Spread message list information over two lines when using the
  814. three column layout.
  815. </para>
  816. </listitem>
  817. </varlistentry>
  818. <varlistentry>
  819. <term><literal>unsafe_ssl_certs</literal></term>
  820. <listitem>
  821. <para>
  822. Allows Claws to remember multiple SSL certificates for a given
  823. server/port. This is disabled by default.
  824. </para>
  825. </listitem>
  826. </varlistentry>
  827. <varlistentry>
  828. <term><literal>use_networkmanager</literal></term>
  829. <listitem>
  830. <para>
  831. Use NetworkManager to switch offline automatically. This is enabled
  832. by default.
  833. </para>
  834. </listitem>
  835. </varlistentry>
  836. <varlistentry>
  837. <term><literal>use_stripes_everywhere</literal></term>
  838. <listitem>
  839. <para>
  840. Enable alternately coloured lines in GtkTreeView components.
  841. </para>
  842. </listitem>
  843. </varlistentry>
  844. <varlistentry>
  845. <term><literal>use_stripes_in_summaries</literal></term>
  846. <listitem>
  847. <para>
  848. Enable alternately coloured lines in the main window GtkTreeView
  849. components, (Folder List and Message List). The only useful way to
  850. use this option is to set it to 0 when use_stripes_everywhere is set
  851. to 1.
  852. </para>
  853. </listitem>
  854. </varlistentry>
  855. <varlistentry>
  856. <term><literal>utf8_instead_of_locale_for_broken_mail</literal></term>
  857. <listitem>
  858. <para>
  859. Use UTF-8 encoding for broken mails instead of current locale.
  860. </para>
  861. </listitem>
  862. </varlistentry>
  863. <varlistentry>
  864. <term><literal>warn_dnd</literal></term>
  865. <listitem>
  866. <para>
  867. Display a confirmation dialogue on drag 'n' drop of folders.
  868. </para>
  869. </listitem>
  870. </varlistentry>
  871. <varlistentry>
  872. <term><literal>zero_replacement_char</literal></term>
  873. <listitem>
  874. <para>
  875. Character to show in Folder List counter columns when a folder contains
  876. no messages. Default value is 0.
  877. </para>
  878. </listitem>
  879. </varlistentry>
  880. </variablelist>
  881. </section>
  882. <section id="adv_autofaces">
  883. <title>Autofaces</title>
  884. <para>
  885. Claws Mail allows setting the Face and X-Face headers directly
  886. from files, either globally for all defined accounts
  887. or on a per-account basis. These files must be placed in the
  888. <filename>~/.claws-mail/autofaces/</filename> directory.
  889. </para>
  890. <para>
  891. If they exist, the global Face and/or X-Face headers for all
  892. accounts are taken from the <filename>face</filename> and/or
  893. <filename>xface</filename> files respectively. In a similar
  894. manner, Face and/or X-Face headers for a specific account can
  895. be provided by <filename>face.</filename><emphasis>accountname</emphasis>
  896. and/or <filename>xface.</filename><emphasis>accountname</emphasis>,
  897. where <emphasis>accountname</emphasis> is the name of the account you
  898. want this header to be associated with.
  899. </para>
  900. <para>
  901. If the name of the account contains characters which may be unsuitable
  902. for the underlying filesystem (including spaces) these are replaced by
  903. underscores (<quote>_</quote>) when searching for the autofaces of
  904. that account. For example, if your account is called
  905. <quote>&lt;My Mail&gt;</quote>, the name for the X-Face filename for
  906. that account would be
  907. <filename>~/.claws-mail/autofaces/xface._My_Mail_</filename>.
  908. Be aware that this feature doesn't check the content of the files,
  909. or for duplication of headers, (most mailers, including Claws
  910. Mail, will ignore duplicates and display the last one only).
  911. </para>
  912. </section>
  913. </section>