https://claws-mail.org/faq/api.php?action=feedcontributions&user=Janek+Kozicki&feedformat=atom Claws Mail FAQ - User contributions [en] 2024-03-29T12:38:08Z User contributions MediaWiki 1.35.7 https://claws-mail.org/faq/index.php?title=Actions&diff=2048 Actions 2008-09-26T14:21:35Z <p>Janek Kozicki: </p> <hr /> <div>=== Introduction ===<br /> <br /> The &quot;actions&quot; feature is a convenient way for the user to launch external commands to process a complete message file including headers and body or just one of its parts. It allows also the use of an external command to filter the whole text or just a selected part in the message window or in the compose window. This is a generic tool that allows to do any uncommon actions on the messages, and thus extends the possibilities of Claws Mail.<br /> <br /> === Usage ===<br /> <br /> To create a new action, go to '''Configuration -&gt; Actions....''' The &quot;Actions setting&quot; dialog offers to enter the '''Menu name''' that will trigger the command. The created menu will be found in the '''Tools -&gt; Actions''' submenu. By inserting a slash / in the menu name, you create a submenu.<br /> <br /> The command is entered in the '''Command line''' entry. Note that Claws Mail stores every single email in a separate file. This allows to use the following syntax for the command : <br /> <br /> * '''%f''' denotes the file name of the selected message. If you selected more than one, then the command will be launched for each message with the appropriate file name;<br /> <br /> * '''%F''' denotes the list of the file names of the selected message. If only one message is selected, this amounts to '''%f''', but if more messages are selected, then the command will be launched only once with the list of the file names. (You can use both '''%f''' and '''%F''' in one command: then the command will be launched for each selected message with the name of this message and with the list of all selected messages. I did not find a practical example for this.);<br /> <br /> * '''%p''' denotes the current selected message part of a multipart message. The part is decoded accordingly. If the message is not a multipart message, it denotes the message body<br /> <br /> * Prepending '''&gt;''': this will allow you to send to the command's standard input a text that you will enter in a dialog window<br /> <br /> * Prepending '''*''': this will allow you to send to the command's standard input a text that you will enter in a dialog window. But in contrast to prepending '''&gt;''', the entered text is hidden (useful when entering passwords)<br /> <br /> * Appending an ampersand '''&amp;''': this will run the command asynchronously. That means &quot;fire and forget&quot;. Claws Mail won't wait for the command to finish, nor will it catch its output or its error messages<br /> <br /> * Prepending the vertical bar '''|''' (pipe-in): this will send the current displayed text or the current selected text from the message view or the compose window to the command standard input. The command will silently fail if more than one message is selected<br /> <br /> * Appending the vertical bar '''|''' (pipe-out): this will replace the current displayed text or the current selected text from the message window or the compose window with the command standard output. The command will silently fail if more than one message is selected<br /> <br /> * Appending the &quot;greater than&quot; sign '''&gt;''' will insert the command output in the message. The difference between the trailing '''|''' is that no text will be deleted or replaced. Most used when composing mails to insert text. Only available since '''0.8.6claws66*<br /> <br /> ''Note'': It is not possible to use actions containing '''%f''', '''%F''' or '''%p''' from the compose window.<br /> <br /> When a command is run, and unless it is run asynchronously, Claws Mail will be insensitive to any interaction and it will wait for the command to finish. If the command takes too long (5 seconds), it will popup a dialog window allowing to stop it. This dialog will also be displayed as soon as the command has some output: error messages or even its standard output when the command is not a &quot;pipe-out&quot; command. When multiple commands are being run, they are run in parallel and each command output is separated from the outputs of the others.<br /> <br /> === Examples ===<br /> <br /> Here are some examples that are listed in the same syntax as used for storing the actions list. You can copy and paste the definition in your '''~/.claws-mail/actionsrc''' file (exit Claws Mail before). The syntax is very simple: one line per action, each action contains the menu name and the command line separated by a colon and a space &quot;: &quot;. Alternatively, you can use '''Configuration -&gt; Actions...''' and for each example enter a menu name and copy&amp;paste the text after the colon and space &quot;: &quot; in the command definition.<br /> <br /> {| border=&quot;1&quot; cellpadding=&quot;2&quot;<br /> |-<br /> !Purpose<br /> !Menu Name: Command Line<br /> !Details<br /> |-<br /> |'''rot13 cyphering'''<br /> |'''Rot13:''' &lt;nowiki&gt;|&lt;/nowiki&gt;tr a-zA-Z n-za-mN-ZA-M&lt;nowiki&gt;|&lt;/nowiki&gt;<br /> |This will apply the rot13 cyphering algorithm to the (selected) text in the message/compose view<br /> |-<br /> |'''Decoding uuencoded messages''' <br /> |'''UUdeview:''' xdeview %F&amp; <br /> | xdeview comes with uudeview. If an encoded file is split in multiple messages, just select them all and run the command.<br /> |-<br /> |'''Display uuencoded image''' <br /> |'''Display uuencoded:''' [[Actions#uudec|uudec]] %f&amp;<br /> | Displays uuencoded files. The uudec script can be found [http://www.claws-mail.org/tools/claws-mail-uudec.tar.gz here].<br /> |-<br /> |'''Opening uuencoded document with OpenOffice''' <br /> |'''Open uuencoded with OpenOffice:''' [[Actions#uuooffice|uuooffice]] %f&amp;<br /> | Opens uuencoded file with OpenOffice. The uuooffice script can be found [http://www.claws-mail.org/tools/claws-mail-uuooffice.tar.gz here].<br /> |-<br /> |'''Save attachments''' <br /> |'''Save attachments:''' munpack -C ~ -- %F <br /> | Select one or several mails then use the action. The attachments will be saved to your home folder, you can replace ~ by another directory provided you create it first. munpack is provided by the mpack package in debian.<br /> |-<br /> |'''Save MS TNEF parts''' <br /> |'''Save TNEF part:''' xterm -e [[Actions#tnef-claws|tnef-claws]] %p <br /> | Select the TNEF message part then use this action to extract the attachment.<br /> |-<br /> |'''Alter messages''' <br /> |'''Edit message:''' gvim -f &quot;%F&quot; <br /> |Allows to edit any received message. Can be used to remove unneeded message parts etc.<br /> |-<br /> |'''Pretty format''' <br /> |'''Format/Par:''' &lt;nowiki&gt;|&lt;/nowiki&gt;par 72Tbgjqw74bEe B=.''A''a 72bgi&lt;nowiki&gt;|&lt;/nowiki&gt; <br /> '''Format/Fmt:''' &lt;nowiki&gt;|&lt;/nowiki&gt;fmt -s -w 75&lt;nowiki&gt;|&lt;/nowiki&gt;<br /> |'''Par:''' http://www.nicemice.net/par/ is an utility that can pretty format any text. It does a very good job in indenting quoted messages, and justify text. Used when reading or composing a message.<br /> <br /> '''Fmt:''' part of the the GNU core utilities<br /> |-<br /> |'''Browse''' <br /> |'''Part/Dillo:''' dillo %p&amp; <br /> |Browse the selected message part in Dillo.<br /> |-<br /> |'''Receive key from server via PGP/MIME signature''' <br /> |'''GnuPG/Receive Key from PGP/MIME sig:''' &lt;nowiki&gt;ID=`gpg --verify %p /dev/null 2&gt;&amp;1|grep &quot;key ID&quot;|&lt;/nowiki&gt;tr -d &quot;[:space:]&quot;&lt;nowiki&gt;|&lt;/nowiki&gt;tail -c8`;echo &quot;==== Fetching $ID ====&quot;; gpg --no-tty --keyserver wwwkeys.nl.pgp.net --recv-keys $ID<br /> |Select the signature part of a message then call this action to fetch the key from wwwkeys.nl.pgp.net<br /> |-<br /> |'''Receive key from server via signed unencrypted inline message''' <br /> |'''GnuPG/Receive Key from Signed Inline Message:''' &lt;nowiki&gt;ID=`gpg --verify %p 3&gt;&amp;1 1&gt;&amp;2 2&gt;&amp;3 |grep &quot;key ID&quot;|&lt;/nowiki&gt;tr -d &quot;[:space:]&quot;&lt;nowiki&gt;|&lt;/nowiki&gt;tail -c8`;echo &quot;==== Fetching $ID ====&quot;; gpg --no-tty --keyserver wwwkeys.nl.pgp.net --recv-keys $ID<br /> |No need to mouse-select the message, just use the action.<br /> |-<br /> |'''Receive key from ID in message''' <br /> |'''GnuPG/Receive Key From ID in Message'''&lt;nowiki&gt; | &lt;/nowiki&gt;gpg --recv-keys <br /> |Useful when only the desired key ID is in the message. Just select the ID and call the action.<br /> |-<br /> |'''Receive key from URL in message''' <br /> |'''GnuPG/Receive Key from URL in message'''&lt;nowiki&gt; | &lt;/nowiki&gt;wget -i - -O - &lt;nowiki&gt;|&lt;/nowiki&gt; gpg --import <br /> |Select the URL where the public key is then import it with this action.<br /> |-<br /> |'''Import key from mail''' <br /> |'''GnuPG/Import Key From Mail:''' gpg --import %p <br /> |Select the message part where the public key is then import it with this action.<br /> |-<br /> |'''Insert public key in message''' <br /> |'''GnuPG/Insert My Public Key:''' gpg --export -a MYKEYID&gt;<br /> |Insert your public key in the message your are composing. Replace MYKEYID with your key id. '''Needs 0.8.6claws66 or newer'''<br /> |-<br /> |'''Reporting SPAM''' <br /> |'''Report as SPAM:''' spamassassin -r &lt; %f <br /> |Use [http://spamassassin.apache.org/ spamassassin] to report mail as spam. Redirection (&lt;) is possible only with version 0.7.7.<br /> |-<br /> |'''Check spelling''' <br /> |'''Check spelling:''' &lt;nowiki&gt;|&lt;/nowiki&gt;T=`mktemp $HOME/.sXXXXXX`; cat - &gt; $T;xterm -e ispell $T;cat $T;rm $T&lt;nowiki&gt;|&lt;/nowiki&gt; <br /> |Open a terminal and check the spelling with ispell<br /> |-<br /> |'''Search Google for selected text''' <br /> |'''Search Google:''' &lt;nowiki&gt;|&lt;/nowiki&gt;google_search.pl <br /> |Search google for the selected text. Needs the [http://www.claws-mail.org/tools/claws-mail-google_search.tar.gz google_search.pl] script.<br /> |-<br /> |'''Search any searchable website for the selected text''' <br /> |'''Search:''' &lt;nowiki&gt;|&lt;/nowiki&gt;multiwebsearch.pl --where=&quot;%u&quot; --what=&quot;%s&quot;<br /> |Search any searchable website for the selected text. Needs the [http://www.claws-mail.org/tools/claws-mail-multiwebsearch.tar.gz multiwebsearch.pl] script.<br /> |-<br /> |'''Google for message id''' <br /> |'''Google Msg ID:''' &lt;nowiki&gt;|&lt;/nowiki&gt;google_msgid.pl <br /> |Search google for the selected message ID. Needs the [http://www.claws-mail.org/tools/claws-mail-google_msgid.tar.gz google_msgid.pl] script. Edit the script to change the browser (default is mozilla).<br /> |-<br /> |'''Pipe a header value to a script''' <br /> |'''Get Subject:''' grep &quot;^Subject:\ &quot; %f &lt;nowiki&gt;|&lt;/nowiki&gt; cut -d\ -f 2-&lt;nowiki&gt;|&lt;/nowiki&gt; script.sh <br /> |Pipe the '''Subject:''' header value of selected message to script.sh<br /> |-<br /> |'''Fix missing date''' <br /> |'''Fix date:''' fix_date %F <br /> | Add a 'Date:' header in the selected email(s) when such header is missing. Needs the [http://www.claws-mail.org/tools/claws-mail-fix_date.tar.gz fix_date.sh] script.<br /> The correct date is guessed from other headers that contain timestamp information or from the file or system date as a fallback. The order or preference for the date value replacement can be changed by editing the script. This script can be used to fix messages that show non RFC-compliant Date headers as well. X-Original-Date is always added too, to keep track of the original value if any. Date: and X-Original-Date: headers are not overwritten unless you use the --force switch.<br /> |-<br /> |<br /> '''Change subject line'''<br /> |<br /> '''Remove [something]:''' echo %F | xargs -n 1 remove-deprecated-list.sh<br /> | <br /> I needed to remove '''[something]''' from some mailing list posts:<br /> &lt;pre&gt;<br /> #!/bin/bash<br /> # $1 - file name<br /> # preserve mtime<br /> mtime=`stat -t -c &quot;%y&quot; &quot;$1&quot; | sed -e &quot;s/[- ]//g&quot; -e &quot;s/://&quot; -e &quot;s/:/./&quot; | cut -b 1-15`<br /> echo Filtering file: &quot;$1&quot;<br /> mv &quot;$1&quot; &quot;$1&quot;.ZMZ<br /> # filter with sed<br /> cat &quot;$1&quot;.ZMZ | sed -e &quot;s/^Subject: \(.*\)\[something\] /Subject: \1/&quot; &gt; &quot;$1&quot;<br /> rm &quot;$1&quot;.ZMZ<br /> # restore mtime<br /> touch -m -t &quot;$mtime&quot; &quot;$1&quot;<br /> &lt;/pre&gt;<br /> |}<br /> <br /> &lt;div id=&quot;uudec&quot;&gt;The '''uudec''' script can be found [http://www.claws-mail.org/tools/claws-mail-uudec.tar.gz here (uudec)]. It needs '''uudecode''' and Image Magick's '''display'''. The latter can be replaced by any image viewer that can get input from standard input. The script could also be modified to use temporary files instead of standard input.&lt;/div&gt;<br /> <br /> &lt;div id=&quot;uuooffice&quot;&gt;The '''uuooffice''' script can be found [http://www.claws-mail.org/tools/claws-mail-uuooffice.tar.gz here (uuooffice)]. It needs '''uudecode''' and OpenOffice. The latter can be replaced by any document viewer/editor. The script creates a temporary file (/tmp/uuooffice-&lt;docname&gt;) and deletes it after you close OpenOffice.&lt;/div&gt;<br /> <br /> &lt;div id=&quot;tnef-claws&quot;&gt;The '''tnef-claws''' bash script was written by Shawn Lamson and is to be found [http://melvin.hadasht.free.fr/home/sylpheed/actions/tnef-claws here]. The script is well commented. You need to have the [http://sourceforge.net/projects/tnef/ tnef] package already installed.&lt;/div&gt;</div> Janek Kozicki https://claws-mail.org/faq/index.php?title=Actions&diff=2047 Actions 2008-09-26T14:20:46Z <p>Janek Kozicki: replaced with something</p> <hr /> <div>=== Introduction ===<br /> <br /> The &quot;actions&quot; feature is a convenient way for the user to launch external commands to process a complete message file including headers and body or just one of its parts. It allows also the use of an external command to filter the whole text or just a selected part in the message window or in the compose window. This is a generic tool that allows to do any uncommon actions on the messages, and thus extends the possibilities of Claws Mail.<br /> <br /> === Usage ===<br /> <br /> To create a new action, go to '''Configuration -&gt; Actions....''' The &quot;Actions setting&quot; dialog offers to enter the '''Menu name''' that will trigger the command. The created menu will be found in the '''Tools -&gt; Actions''' submenu. By inserting a slash / in the menu name, you create a submenu.<br /> <br /> The command is entered in the '''Command line''' entry. Note that Claws Mail stores every single email in a separate file. This allows to use the following syntax for the command : <br /> <br /> * '''%f''' denotes the file name of the selected message. If you selected more than one, then the command will be launched for each message with the appropriate file name;<br /> <br /> * '''%F''' denotes the list of the file names of the selected message. If only one message is selected, this amounts to '''%f''', but if more messages are selected, then the command will be launched only once with the list of the file names. (You can use both '''%f''' and '''%F''' in one command: then the command will be launched for each selected message with the name of this message and with the list of all selected messages. I did not find a practical example for this.);<br /> <br /> * '''%p''' denotes the current selected message part of a multipart message. The part is decoded accordingly. If the message is not a multipart message, it denotes the message body<br /> <br /> * Prepending '''&gt;''': this will allow you to send to the command's standard input a text that you will enter in a dialog window<br /> <br /> * Prepending '''*''': this will allow you to send to the command's standard input a text that you will enter in a dialog window. But in contrast to prepending '''&gt;''', the entered text is hidden (useful when entering passwords)<br /> <br /> * Appending an ampersand '''&amp;''': this will run the command asynchronously. That means &quot;fire and forget&quot;. Claws Mail won't wait for the command to finish, nor will it catch its output or its error messages<br /> <br /> * Prepending the vertical bar '''|''' (pipe-in): this will send the current displayed text or the current selected text from the message view or the compose window to the command standard input. The command will silently fail if more than one message is selected<br /> <br /> * Appending the vertical bar '''|''' (pipe-out): this will replace the current displayed text or the current selected text from the message window or the compose window with the command standard output. The command will silently fail if more than one message is selected<br /> <br /> * Appending the &quot;greater than&quot; sign '''&gt;''' will insert the command output in the message. The difference between the trailing '''|''' is that no text will be deleted or replaced. Most used when composing mails to insert text. Only available since '''0.8.6claws66*<br /> <br /> ''Note'': It is not possible to use actions containing '''%f''', '''%F''' or '''%p''' from the compose window.<br /> <br /> When a command is run, and unless it is run asynchronously, Claws Mail will be insensitive to any interaction and it will wait for the command to finish. If the command takes too long (5 seconds), it will popup a dialog window allowing to stop it. This dialog will also be displayed as soon as the command has some output: error messages or even its standard output when the command is not a &quot;pipe-out&quot; command. When multiple commands are being run, they are run in parallel and each command output is separated from the outputs of the others.<br /> <br /> === Examples ===<br /> <br /> Here are some examples that are listed in the same syntax as used for storing the actions list. You can copy and paste the definition in your '''~/.claws-mail/actionsrc''' file (exit Claws Mail before). The syntax is very simple: one line per action, each action contains the menu name and the command line separated by a colon and a space &quot;: &quot;. Alternatively, you can use '''Configuration -&gt; Actions...''' and for each example enter a menu name and copy&amp;paste the text after the colon and space &quot;: &quot; in the command definition.<br /> <br /> {| border=&quot;1&quot; cellpadding=&quot;2&quot;<br /> |-<br /> !Purpose<br /> !Menu Name: Command Line<br /> !Details<br /> |-<br /> |'''rot13 cyphering'''<br /> |'''Rot13:''' &lt;nowiki&gt;|&lt;/nowiki&gt;tr a-zA-Z n-za-mN-ZA-M&lt;nowiki&gt;|&lt;/nowiki&gt;<br /> |This will apply the rot13 cyphering algorithm to the (selected) text in the message/compose view<br /> |-<br /> |'''Decoding uuencoded messages''' <br /> |'''UUdeview:''' xdeview %F&amp; <br /> | xdeview comes with uudeview. If an encoded file is split in multiple messages, just select them all and run the command.<br /> |-<br /> |'''Display uuencoded image''' <br /> |'''Display uuencoded:''' [[Actions#uudec|uudec]] %f&amp;<br /> | Displays uuencoded files. The uudec script can be found [http://www.claws-mail.org/tools/claws-mail-uudec.tar.gz here].<br /> |-<br /> |'''Opening uuencoded document with OpenOffice''' <br /> |'''Open uuencoded with OpenOffice:''' [[Actions#uuooffice|uuooffice]] %f&amp;<br /> | Opens uuencoded file with OpenOffice. The uuooffice script can be found [http://www.claws-mail.org/tools/claws-mail-uuooffice.tar.gz here].<br /> |-<br /> |'''Save attachments''' <br /> |'''Save attachments:''' munpack -C ~ -- %F <br /> | Select one or several mails then use the action. The attachments will be saved to your home folder, you can replace ~ by another directory provided you create it first. munpack is provided by the mpack package in debian.<br /> |-<br /> |'''Save MS TNEF parts''' <br /> |'''Save TNEF part:''' xterm -e [[Actions#tnef-claws|tnef-claws]] %p <br /> | Select the TNEF message part then use this action to extract the attachment.<br /> |-<br /> |'''Alter messages''' <br /> |'''Edit message:''' gvim -f &quot;%F&quot; <br /> |Allows to edit any received message. Can be used to remove unneeded message parts etc.<br /> |-<br /> |'''Pretty format''' <br /> |'''Format/Par:''' &lt;nowiki&gt;|&lt;/nowiki&gt;par 72Tbgjqw74bEe B=.''A''a 72bgi&lt;nowiki&gt;|&lt;/nowiki&gt; <br /> '''Format/Fmt:''' &lt;nowiki&gt;|&lt;/nowiki&gt;fmt -s -w 75&lt;nowiki&gt;|&lt;/nowiki&gt;<br /> |'''Par:''' http://www.nicemice.net/par/ is an utility that can pretty format any text. It does a very good job in indenting quoted messages, and justify text. Used when reading or composing a message.<br /> <br /> '''Fmt:''' part of the the GNU core utilities<br /> |-<br /> |'''Browse''' <br /> |'''Part/Dillo:''' dillo %p&amp; <br /> |Browse the selected message part in Dillo.<br /> |-<br /> |'''Receive key from server via PGP/MIME signature''' <br /> |'''GnuPG/Receive Key from PGP/MIME sig:''' &lt;nowiki&gt;ID=`gpg --verify %p /dev/null 2&gt;&amp;1|grep &quot;key ID&quot;|&lt;/nowiki&gt;tr -d &quot;[:space:]&quot;&lt;nowiki&gt;|&lt;/nowiki&gt;tail -c8`;echo &quot;==== Fetching $ID ====&quot;; gpg --no-tty --keyserver wwwkeys.nl.pgp.net --recv-keys $ID<br /> |Select the signature part of a message then call this action to fetch the key from wwwkeys.nl.pgp.net<br /> |-<br /> |'''Receive key from server via signed unencrypted inline message''' <br /> |'''GnuPG/Receive Key from Signed Inline Message:''' &lt;nowiki&gt;ID=`gpg --verify %p 3&gt;&amp;1 1&gt;&amp;2 2&gt;&amp;3 |grep &quot;key ID&quot;|&lt;/nowiki&gt;tr -d &quot;[:space:]&quot;&lt;nowiki&gt;|&lt;/nowiki&gt;tail -c8`;echo &quot;==== Fetching $ID ====&quot;; gpg --no-tty --keyserver wwwkeys.nl.pgp.net --recv-keys $ID<br /> |No need to mouse-select the message, just use the action.<br /> |-<br /> |'''Receive key from ID in message''' <br /> |'''GnuPG/Receive Key From ID in Message'''&lt;nowiki&gt; | &lt;/nowiki&gt;gpg --recv-keys <br /> |Useful when only the desired key ID is in the message. Just select the ID and call the action.<br /> |-<br /> |'''Receive key from URL in message''' <br /> |'''GnuPG/Receive Key from URL in message'''&lt;nowiki&gt; | &lt;/nowiki&gt;wget -i - -O - &lt;nowiki&gt;|&lt;/nowiki&gt; gpg --import <br /> |Select the URL where the public key is then import it with this action.<br /> |-<br /> |'''Import key from mail''' <br /> |'''GnuPG/Import Key From Mail:''' gpg --import %p <br /> |Select the message part where the public key is then import it with this action.<br /> |-<br /> |'''Insert public key in message''' <br /> |'''GnuPG/Insert My Public Key:''' gpg --export -a MYKEYID&gt;<br /> |Insert your public key in the message your are composing. Replace MYKEYID with your key id. '''Needs 0.8.6claws66 or newer'''<br /> |-<br /> |'''Reporting SPAM''' <br /> |'''Report as SPAM:''' spamassassin -r &lt; %f <br /> |Use [http://spamassassin.apache.org/ spamassassin] to report mail as spam. Redirection (&lt;) is possible only with version 0.7.7.<br /> |-<br /> |'''Check spelling''' <br /> |'''Check spelling:''' &lt;nowiki&gt;|&lt;/nowiki&gt;T=`mktemp $HOME/.sXXXXXX`; cat - &gt; $T;xterm -e ispell $T;cat $T;rm $T&lt;nowiki&gt;|&lt;/nowiki&gt; <br /> |Open a terminal and check the spelling with ispell<br /> |-<br /> |'''Search Google for selected text''' <br /> |'''Search Google:''' &lt;nowiki&gt;|&lt;/nowiki&gt;google_search.pl <br /> |Search google for the selected text. Needs the [http://www.claws-mail.org/tools/claws-mail-google_search.tar.gz google_search.pl] script.<br /> |-<br /> |'''Search any searchable website for the selected text''' <br /> |'''Search:''' &lt;nowiki&gt;|&lt;/nowiki&gt;multiwebsearch.pl --where=&quot;%u&quot; --what=&quot;%s&quot;<br /> |Search any searchable website for the selected text. Needs the [http://www.claws-mail.org/tools/claws-mail-multiwebsearch.tar.gz multiwebsearch.pl] script.<br /> |-<br /> |'''Google for message id''' <br /> |'''Google Msg ID:''' &lt;nowiki&gt;|&lt;/nowiki&gt;google_msgid.pl <br /> |Search google for the selected message ID. Needs the [http://www.claws-mail.org/tools/claws-mail-google_msgid.tar.gz google_msgid.pl] script. Edit the script to change the browser (default is mozilla).<br /> |-<br /> |'''Pipe a header value to a script''' <br /> |'''Get Subject:''' grep &quot;^Subject:\ &quot; %f &lt;nowiki&gt;|&lt;/nowiki&gt; cut -d\ -f 2-&lt;nowiki&gt;|&lt;/nowiki&gt; script.sh <br /> |Pipe the '''Subject:''' header value of selected message to script.sh<br /> |-<br /> |'''Fix missing date''' <br /> |'''Fix date:''' fix_date %F <br /> | Add a 'Date:' header in the selected email(s) when such header is missing. Needs the [http://www.claws-mail.org/tools/claws-mail-fix_date.tar.gz fix_date.sh] script.<br /> The correct date is guessed from other headers that contain timestamp information or from the file or system date as a fallback. The order or preference for the date value replacement can be changed by editing the script. This script can be used to fix messages that show non RFC-compliant Date headers as well. X-Original-Date is always added too, to keep track of the original value if any. Date: and X-Original-Date: headers are not overwritten unless you use the --force switch.<br /> |-<br /> |<br /> '''Change subject line'''<br /> |<br /> '''Remove [deprecated list]:''' echo %F | xargs -n 1 remove-deprecated-list.sh<br /> | <br /> I needed to remove '''[something]''' from some mailing list posts:<br /> &lt;pre&gt;<br /> #!/bin/bash<br /> # $1 - file name<br /> # preserve mtime<br /> mtime=`stat -t -c &quot;%y&quot; &quot;$1&quot; | sed -e &quot;s/[- ]//g&quot; -e &quot;s/://&quot; -e &quot;s/:/./&quot; | cut -b 1-15`<br /> echo Filtering file: &quot;$1&quot;<br /> mv &quot;$1&quot; &quot;$1&quot;.ZMZ<br /> # filter with sed<br /> cat &quot;$1&quot;.ZMZ | sed -e &quot;s/^Subject: \(.*\)\[something\] /Subject: \1/&quot; &gt; &quot;$1&quot;<br /> rm &quot;$1&quot;.ZMZ<br /> # restore mtime<br /> touch -m -t &quot;$mtime&quot; &quot;$1&quot;<br /> &lt;/pre&gt;<br /> |}<br /> <br /> &lt;div id=&quot;uudec&quot;&gt;The '''uudec''' script can be found [http://www.claws-mail.org/tools/claws-mail-uudec.tar.gz here (uudec)]. It needs '''uudecode''' and Image Magick's '''display'''. The latter can be replaced by any image viewer that can get input from standard input. The script could also be modified to use temporary files instead of standard input.&lt;/div&gt;<br /> <br /> &lt;div id=&quot;uuooffice&quot;&gt;The '''uuooffice''' script can be found [http://www.claws-mail.org/tools/claws-mail-uuooffice.tar.gz here (uuooffice)]. It needs '''uudecode''' and OpenOffice. The latter can be replaced by any document viewer/editor. The script creates a temporary file (/tmp/uuooffice-&lt;docname&gt;) and deletes it after you close OpenOffice.&lt;/div&gt;<br /> <br /> &lt;div id=&quot;tnef-claws&quot;&gt;The '''tnef-claws''' bash script was written by Shawn Lamson and is to be found [http://melvin.hadasht.free.fr/home/sylpheed/actions/tnef-claws here]. The script is well commented. You need to have the [http://sourceforge.net/projects/tnef/ tnef] package already installed.&lt;/div&gt;</div> Janek Kozicki https://claws-mail.org/faq/index.php?title=Actions&diff=2046 Actions 2008-09-26T14:17:06Z <p>Janek Kozicki: /* Examples */ added new example</p> <hr /> <div>=== Introduction ===<br /> <br /> The &quot;actions&quot; feature is a convenient way for the user to launch external commands to process a complete message file including headers and body or just one of its parts. It allows also the use of an external command to filter the whole text or just a selected part in the message window or in the compose window. This is a generic tool that allows to do any uncommon actions on the messages, and thus extends the possibilities of Claws Mail.<br /> <br /> === Usage ===<br /> <br /> To create a new action, go to '''Configuration -&gt; Actions....''' The &quot;Actions setting&quot; dialog offers to enter the '''Menu name''' that will trigger the command. The created menu will be found in the '''Tools -&gt; Actions''' submenu. By inserting a slash / in the menu name, you create a submenu.<br /> <br /> The command is entered in the '''Command line''' entry. Note that Claws Mail stores every single email in a separate file. This allows to use the following syntax for the command : <br /> <br /> * '''%f''' denotes the file name of the selected message. If you selected more than one, then the command will be launched for each message with the appropriate file name;<br /> <br /> * '''%F''' denotes the list of the file names of the selected message. If only one message is selected, this amounts to '''%f''', but if more messages are selected, then the command will be launched only once with the list of the file names. (You can use both '''%f''' and '''%F''' in one command: then the command will be launched for each selected message with the name of this message and with the list of all selected messages. I did not find a practical example for this.);<br /> <br /> * '''%p''' denotes the current selected message part of a multipart message. The part is decoded accordingly. If the message is not a multipart message, it denotes the message body<br /> <br /> * Prepending '''&gt;''': this will allow you to send to the command's standard input a text that you will enter in a dialog window<br /> <br /> * Prepending '''*''': this will allow you to send to the command's standard input a text that you will enter in a dialog window. But in contrast to prepending '''&gt;''', the entered text is hidden (useful when entering passwords)<br /> <br /> * Appending an ampersand '''&amp;''': this will run the command asynchronously. That means &quot;fire and forget&quot;. Claws Mail won't wait for the command to finish, nor will it catch its output or its error messages<br /> <br /> * Prepending the vertical bar '''|''' (pipe-in): this will send the current displayed text or the current selected text from the message view or the compose window to the command standard input. The command will silently fail if more than one message is selected<br /> <br /> * Appending the vertical bar '''|''' (pipe-out): this will replace the current displayed text or the current selected text from the message window or the compose window with the command standard output. The command will silently fail if more than one message is selected<br /> <br /> * Appending the &quot;greater than&quot; sign '''&gt;''' will insert the command output in the message. The difference between the trailing '''|''' is that no text will be deleted or replaced. Most used when composing mails to insert text. Only available since '''0.8.6claws66*<br /> <br /> ''Note'': It is not possible to use actions containing '''%f''', '''%F''' or '''%p''' from the compose window.<br /> <br /> When a command is run, and unless it is run asynchronously, Claws Mail will be insensitive to any interaction and it will wait for the command to finish. If the command takes too long (5 seconds), it will popup a dialog window allowing to stop it. This dialog will also be displayed as soon as the command has some output: error messages or even its standard output when the command is not a &quot;pipe-out&quot; command. When multiple commands are being run, they are run in parallel and each command output is separated from the outputs of the others.<br /> <br /> === Examples ===<br /> <br /> Here are some examples that are listed in the same syntax as used for storing the actions list. You can copy and paste the definition in your '''~/.claws-mail/actionsrc''' file (exit Claws Mail before). The syntax is very simple: one line per action, each action contains the menu name and the command line separated by a colon and a space &quot;: &quot;. Alternatively, you can use '''Configuration -&gt; Actions...''' and for each example enter a menu name and copy&amp;paste the text after the colon and space &quot;: &quot; in the command definition.<br /> <br /> {| border=&quot;1&quot; cellpadding=&quot;2&quot;<br /> |-<br /> !Purpose<br /> !Menu Name: Command Line<br /> !Details<br /> |-<br /> |'''rot13 cyphering'''<br /> |'''Rot13:''' &lt;nowiki&gt;|&lt;/nowiki&gt;tr a-zA-Z n-za-mN-ZA-M&lt;nowiki&gt;|&lt;/nowiki&gt;<br /> |This will apply the rot13 cyphering algorithm to the (selected) text in the message/compose view<br /> |-<br /> |'''Decoding uuencoded messages''' <br /> |'''UUdeview:''' xdeview %F&amp; <br /> | xdeview comes with uudeview. If an encoded file is split in multiple messages, just select them all and run the command.<br /> |-<br /> |'''Display uuencoded image''' <br /> |'''Display uuencoded:''' [[Actions#uudec|uudec]] %f&amp;<br /> | Displays uuencoded files. The uudec script can be found [http://www.claws-mail.org/tools/claws-mail-uudec.tar.gz here].<br /> |-<br /> |'''Opening uuencoded document with OpenOffice''' <br /> |'''Open uuencoded with OpenOffice:''' [[Actions#uuooffice|uuooffice]] %f&amp;<br /> | Opens uuencoded file with OpenOffice. The uuooffice script can be found [http://www.claws-mail.org/tools/claws-mail-uuooffice.tar.gz here].<br /> |-<br /> |'''Save attachments''' <br /> |'''Save attachments:''' munpack -C ~ -- %F <br /> | Select one or several mails then use the action. The attachments will be saved to your home folder, you can replace ~ by another directory provided you create it first. munpack is provided by the mpack package in debian.<br /> |-<br /> |'''Save MS TNEF parts''' <br /> |'''Save TNEF part:''' xterm -e [[Actions#tnef-claws|tnef-claws]] %p <br /> | Select the TNEF message part then use this action to extract the attachment.<br /> |-<br /> |'''Alter messages''' <br /> |'''Edit message:''' gvim -f &quot;%F&quot; <br /> |Allows to edit any received message. Can be used to remove unneeded message parts etc.<br /> |-<br /> |'''Pretty format''' <br /> |'''Format/Par:''' &lt;nowiki&gt;|&lt;/nowiki&gt;par 72Tbgjqw74bEe B=.''A''a 72bgi&lt;nowiki&gt;|&lt;/nowiki&gt; <br /> '''Format/Fmt:''' &lt;nowiki&gt;|&lt;/nowiki&gt;fmt -s -w 75&lt;nowiki&gt;|&lt;/nowiki&gt;<br /> |'''Par:''' http://www.nicemice.net/par/ is an utility that can pretty format any text. It does a very good job in indenting quoted messages, and justify text. Used when reading or composing a message.<br /> <br /> '''Fmt:''' part of the the GNU core utilities<br /> |-<br /> |'''Browse''' <br /> |'''Part/Dillo:''' dillo %p&amp; <br /> |Browse the selected message part in Dillo.<br /> |-<br /> |'''Receive key from server via PGP/MIME signature''' <br /> |'''GnuPG/Receive Key from PGP/MIME sig:''' &lt;nowiki&gt;ID=`gpg --verify %p /dev/null 2&gt;&amp;1|grep &quot;key ID&quot;|&lt;/nowiki&gt;tr -d &quot;[:space:]&quot;&lt;nowiki&gt;|&lt;/nowiki&gt;tail -c8`;echo &quot;==== Fetching $ID ====&quot;; gpg --no-tty --keyserver wwwkeys.nl.pgp.net --recv-keys $ID<br /> |Select the signature part of a message then call this action to fetch the key from wwwkeys.nl.pgp.net<br /> |-<br /> |'''Receive key from server via signed unencrypted inline message''' <br /> |'''GnuPG/Receive Key from Signed Inline Message:''' &lt;nowiki&gt;ID=`gpg --verify %p 3&gt;&amp;1 1&gt;&amp;2 2&gt;&amp;3 |grep &quot;key ID&quot;|&lt;/nowiki&gt;tr -d &quot;[:space:]&quot;&lt;nowiki&gt;|&lt;/nowiki&gt;tail -c8`;echo &quot;==== Fetching $ID ====&quot;; gpg --no-tty --keyserver wwwkeys.nl.pgp.net --recv-keys $ID<br /> |No need to mouse-select the message, just use the action.<br /> |-<br /> |'''Receive key from ID in message''' <br /> |'''GnuPG/Receive Key From ID in Message'''&lt;nowiki&gt; | &lt;/nowiki&gt;gpg --recv-keys <br /> |Useful when only the desired key ID is in the message. Just select the ID and call the action.<br /> |-<br /> |'''Receive key from URL in message''' <br /> |'''GnuPG/Receive Key from URL in message'''&lt;nowiki&gt; | &lt;/nowiki&gt;wget -i - -O - &lt;nowiki&gt;|&lt;/nowiki&gt; gpg --import <br /> |Select the URL where the public key is then import it with this action.<br /> |-<br /> |'''Import key from mail''' <br /> |'''GnuPG/Import Key From Mail:''' gpg --import %p <br /> |Select the message part where the public key is then import it with this action.<br /> |-<br /> |'''Insert public key in message''' <br /> |'''GnuPG/Insert My Public Key:''' gpg --export -a MYKEYID&gt;<br /> |Insert your public key in the message your are composing. Replace MYKEYID with your key id. '''Needs 0.8.6claws66 or newer'''<br /> |-<br /> |'''Reporting SPAM''' <br /> |'''Report as SPAM:''' spamassassin -r &lt; %f <br /> |Use [http://spamassassin.apache.org/ spamassassin] to report mail as spam. Redirection (&lt;) is possible only with version 0.7.7.<br /> |-<br /> |'''Check spelling''' <br /> |'''Check spelling:''' &lt;nowiki&gt;|&lt;/nowiki&gt;T=`mktemp $HOME/.sXXXXXX`; cat - &gt; $T;xterm -e ispell $T;cat $T;rm $T&lt;nowiki&gt;|&lt;/nowiki&gt; <br /> |Open a terminal and check the spelling with ispell<br /> |-<br /> |'''Search Google for selected text''' <br /> |'''Search Google:''' &lt;nowiki&gt;|&lt;/nowiki&gt;google_search.pl <br /> |Search google for the selected text. Needs the [http://www.claws-mail.org/tools/claws-mail-google_search.tar.gz google_search.pl] script.<br /> |-<br /> |'''Search any searchable website for the selected text''' <br /> |'''Search:''' &lt;nowiki&gt;|&lt;/nowiki&gt;multiwebsearch.pl --where=&quot;%u&quot; --what=&quot;%s&quot;<br /> |Search any searchable website for the selected text. Needs the [http://www.claws-mail.org/tools/claws-mail-multiwebsearch.tar.gz multiwebsearch.pl] script.<br /> |-<br /> |'''Google for message id''' <br /> |'''Google Msg ID:''' &lt;nowiki&gt;|&lt;/nowiki&gt;google_msgid.pl <br /> |Search google for the selected message ID. Needs the [http://www.claws-mail.org/tools/claws-mail-google_msgid.tar.gz google_msgid.pl] script. Edit the script to change the browser (default is mozilla).<br /> |-<br /> |'''Pipe a header value to a script''' <br /> |'''Get Subject:''' grep &quot;^Subject:\ &quot; %f &lt;nowiki&gt;|&lt;/nowiki&gt; cut -d\ -f 2-&lt;nowiki&gt;|&lt;/nowiki&gt; script.sh <br /> |Pipe the '''Subject:''' header value of selected message to script.sh<br /> |-<br /> |'''Fix missing date''' <br /> |'''Fix date:''' fix_date %F <br /> | Add a 'Date:' header in the selected email(s) when such header is missing. Needs the [http://www.claws-mail.org/tools/claws-mail-fix_date.tar.gz fix_date.sh] script.<br /> The correct date is guessed from other headers that contain timestamp information or from the file or system date as a fallback. The order or preference for the date value replacement can be changed by editing the script. This script can be used to fix messages that show non RFC-compliant Date headers as well. X-Original-Date is always added too, to keep track of the original value if any. Date: and X-Original-Date: headers are not overwritten unless you use the --force switch.<br /> |-<br /> |<br /> '''Change subject line'''<br /> |<br /> '''Remove [deprecated list]:''' echo %F | xargs -n 1 remove-deprecated-list.sh<br /> | <br /> I needed to remove [deprecated list] from some mailing list posts:<br /> &lt;pre&gt;<br /> #!/bin/bash<br /> # $1 - file name<br /> # preserve mtime<br /> mtime=`stat -t -c &quot;%y&quot; &quot;$1&quot; | sed -e &quot;s/[- ]//g&quot; -e &quot;s/://&quot; -e &quot;s/:/./&quot; | cut -b 1-15`<br /> echo Filtering file: &quot;$1&quot;<br /> mv &quot;$1&quot; &quot;$1&quot;.ZMZ<br /> # filter with sed<br /> cat &quot;$1&quot;.ZMZ | sed -e &quot;s/^Subject: \(.*\)\[deprecated list\] /Subject: \1/&quot; &gt; &quot;$1&quot;<br /> rm &quot;$1&quot;.ZMZ<br /> # restore mtime<br /> touch -m -t &quot;$mtime&quot; &quot;$1&quot;<br /> &lt;/pre&gt;<br /> |}<br /> <br /> &lt;div id=&quot;uudec&quot;&gt;The '''uudec''' script can be found [http://www.claws-mail.org/tools/claws-mail-uudec.tar.gz here (uudec)]. It needs '''uudecode''' and Image Magick's '''display'''. The latter can be replaced by any image viewer that can get input from standard input. The script could also be modified to use temporary files instead of standard input.&lt;/div&gt;<br /> <br /> &lt;div id=&quot;uuooffice&quot;&gt;The '''uuooffice''' script can be found [http://www.claws-mail.org/tools/claws-mail-uuooffice.tar.gz here (uuooffice)]. It needs '''uudecode''' and OpenOffice. The latter can be replaced by any document viewer/editor. The script creates a temporary file (/tmp/uuooffice-&lt;docname&gt;) and deletes it after you close OpenOffice.&lt;/div&gt;<br /> <br /> &lt;div id=&quot;tnef-claws&quot;&gt;The '''tnef-claws''' bash script was written by Shawn Lamson and is to be found [http://melvin.hadasht.free.fr/home/sylpheed/actions/tnef-claws here]. The script is well commented. You need to have the [http://sourceforge.net/projects/tnef/ tnef] package already installed.&lt;/div&gt;</div> Janek Kozicki