Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

matcherrc2perlfilter(1) [debian man page]

MATCHERRC2PERLFILTER.PL(1)				User Contributed Perl Documentation				MATCHERRC2PERLFILTER.PL(1)

NAME
matcherrc2perlfilter -- Conversion of matcherrc rules to perl DESCRIPTION
This script converts matcherrc filtering rules into perl_filter rules for usage with the claws-mail-perl-filter plugin of the Claws Mail mailer. USAGE
matcherrc2perlfilter No arguments required. Conversion is done for current user only. FILES
$HOME/.claws-mail/matcherrc Input file where standard filtering rules lie. $HOME/.claws-mail/perl_filter Output file written by this script. Converted rules are appended if the file already exists, so be careful when running the script more than once. BUGS
This conversion script doesn't produce nice Perl code and is just intended to get you started. If you choose to use the Perl plugin, consider rewriting your rules. SEE ALSO
claws-mail-perl-filter(1), claws-mail(1) AUTHOR
This manual page was written by Ricardo Mones <mones@debian.org>, for the Debian GNU/Linux system (but may be used by others). The matcherrc2perlfilter was written by Holger Berndt <berndth@gmx.de>. perl v5.14.2 2012-11-17 MATCHERRC2PERLFILTER.PL(1)

Check Out this Related Man Page

CLAWS-MAIL-BSFILTER-PLUGIN(1)				      General Commands Manual				     CLAWS-MAIL-BSFILTER-PLUGIN(1)

NAME
claws-mail-bsfilter-plugin -- Spam filtering using the bsfilter program. DESCRIPTION
This manual page documents briefly the claws-mail-bsfilter-plugin This manual page was written for the Debian distribution because the original program does not have a manual page. claws-mail-bsfilter-plugin is a plugin (loadable module) for the Claws Mail mailer. Enables spam mails to be feed to bsfilter program so it can learn to filter them out. USAGE
Before using a plugin you must instruct Claws Mail to load it on startup. For this you must go ``Configuration'' menu on main window toolbar, open ``Plugins...'' dialog, click on the ``Load plugin...'' button and select the plugin file, named bsfilter.so, and press the ``Open'' button. SEE ALSO
bsfilter (1), claws-mail (1), claws-mail-extra-plugins (1). AUTHOR
claws-mail-bsfilter-plugin was written by Colin Leroy colin@colino.net This manual page was written by Ricardo Mones mones@debian.org for the Debian system (but may be used by others). Permission is granted to copy, distribute and/or modify this document under the terms of the GNU General Public License, Version 2 any later version published by the Free Software Foundation. On Debian systems, the complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL. CLAWS-MAIL-BSFILTER-PLUGIN(1)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

sending mail using perl through windows

Hi all this is the code which i tried executing in windows environment to send a test mail. # Perl script to send mail on deliver complete. package SendMail; use Config; use Mail::Send; @ISA = qw(Mail::Send); sub open { my $me = shift; my $how; # How to send mail my $notused; my... (13 Replies)
Discussion started by: victorvvk
13 Replies

2. Shell Programming and Scripting

Perl script to rotate logs

I have a shell script that will gzip/tar/archive application logs that are over 20 days old which works just fine, but I would like to convert to a Perl script. Problem is, I'm a beginner with Perl and all attempts so far have failed. Basicaly I have a log dir /app/logs that contains several... (18 Replies)
Discussion started by: theninja
18 Replies

3. Shell Programming and Scripting

Need help to write a Perl script

Hello friends, I am having a awk script which does my goal , but I want to learn perl , after learning the basics in perl now I am trying to convert my nawk script to perl . Please help me to do some task in perl that I ve already did in nawk. Like I am facing some problem in... (10 Replies)
Discussion started by: user_prady
10 Replies

4. UNIX for Advanced & Expert Users

Country Codes script faster response ;please help

Dear all I have group of input lines which look like this These input lines is placed in a file named phonelines.txt and there is a script which match $4 and $5 with country codes placed in another file named country-codes.txt and its contents is : Italy 39 Libyana 21892 Thuraya... (12 Replies)
Discussion started by: zanetti321
12 Replies

5. Shell Programming and Scripting

Calling a C-function froma Perl script

Hi All, How can we call a c function from a perl script? Is it the same way as we do for shell script ? Thanks in advance JS (9 Replies)
Discussion started by: jisha
9 Replies

6. Shell Programming and Scripting

Append Output to another file in Perl

Hi All, I am writing a Perl script such that the output from "perl myscript.pl file1" to be appended to another file name called file2. I tried out with the below code but couldn't work. Can any expert give me some advice? open(OUTPUT, 'perl myscript.pl file1 |'); close OUTPUT;... (7 Replies)
Discussion started by: Raynon
7 Replies

7. Shell Programming and Scripting

perl script sub routine

hi I have bee trying to print the closest numbers in 2 arrays @set and @vals but the script i'm using giving the output only for 1st no in 1st array i.e 15 with all values in array2. I'm getting output 56 only. I need the values close to 150,200 and 250. Is there any thing wrong with the script.... (10 Replies)
Discussion started by: nogu0001
10 Replies

8. Shell Programming and Scripting

Exe for perl script

Hi, how to create an exe out of a perl script.Even if it is possible how secure is it? Are there other softwares to decryprt a perl exe and get the source code out of it ? (7 Replies)
Discussion started by: Anuj8584
7 Replies

9. Shell Programming and Scripting

Calling a perl script from a perl script

printf(”Going to call another script... \n”); system(”/my_dir/B.pl”); # call another perl script B.pl exit; Hi everyone, above is an example that i am using to call another perl script from the current perl script. I have two concerns : 1) This there a better way of achieving the same... (6 Replies)
Discussion started by: new2ss
6 Replies

10. Shell Programming and Scripting

script to read mail

Hi, I want to write a script that will read mail ( for eg: from abc.def@yahoomail.com ). And if it finds a particular subject then do something.. Is it possible.... Please help... Thanks in adv.. (8 Replies)
Discussion started by: PRKS
8 Replies

11. UNIX for Dummies Questions & Answers

How to read a file into a variable?

Hello, I have a ini-file containing comma-separated e-mail addresses, an bash-script sending a mail. Mail-addresses and the mail-script are separated, so I need not to change the important mail script. But how can I read out the file into a variable? It is possible to handover the mail... (7 Replies)
Discussion started by: ABE2202
7 Replies

12. Emergency UNIX and Linux Support

Perl script logging via Shell script

Hello I wrote a nice Perl script that is intended to find and copy some files when getting a TERM signal. Now I wanted to make a shell script that starts/restarts the Perl script if it crashes/ends because of errors and make a log of all output the Perl Script gives. The problem is that it won't... (11 Replies)
Discussion started by: al0x
11 Replies

13. Shell Programming and Scripting

Need script to monitor change in /etc/passwd

Hi All, From Audit point of view, I need to add a script to my production Solaris servers. That should be able to mail me, if any user is added or removed. That means, I should get a mail, what user is deleted or added in /etc/passwd, i.e. if there is a change in this file, I should be... (8 Replies)
Discussion started by: solaris_1977
8 Replies

14. Shell Programming and Scripting

Perl system() to run a script

Hello, I'm trying to run "csso" (minify css) in a CGI script from the web panel. That is not working: Returns error 0; my $cmd = qq`csso stylesheet.css > stylesheet.min.css`; system($cmd); But that is working: my $cmd = qq`echo 'blabla' > stylesheet.min.css`; system($cmd); I'm... (12 Replies)
Discussion started by: madispuk
12 Replies

15. UNIX for Beginners Questions & Answers

Send file content in mail

Hi . I am new to scripting.I am trying to mail the recent file contents but not the below script which i wrote is not working.Please guide me in finishing the script File='find /Directory path/*.fnr | tail -1' content=' cat $File' echo $content | mail -s "Subject " "myname@company.com" ... (7 Replies)
Discussion started by: karthik771
7 Replies