Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
samples/ | H | 27-Apr-2021 | - | 632 | 407 | |
.latex2html-init | H A D | 27-Apr-2021 | 102 | 5 | 4 | |
Makefile.am | H A D | 27-Apr-2021 | 3.2 KiB | 101 | 70 | |
README.perltidy | H A D | 27-Apr-2021 | 622 | 22 | 13 | |
README.postfix | H A D | 27-Apr-2021 | 719 | 21 | 14 | |
auth.conf.pod | H A D | 27-Apr-2021 | 14.3 KiB | 598 | 355 | |
automatic_lists_description.conf.pod | H A D | 27-Apr-2021 | 686 | 38 | 20 | |
charset.conf.pod | H A D | 27-Apr-2021 | 1.3 KiB | 58 | 34 | |
crawlers_detection.conf.pod | H A D | 27-Apr-2021 | 610 | 38 | 19 | |
dot.perltidyrc | H A D | 27-Apr-2021 | 926 | 22 | 21 | |
dot.tidyallrc | H A D | 27-Apr-2021 | 83 | 4 | 3 | |
edit_list.conf.pod | H A D | 27-Apr-2021 | 1.8 KiB | 73 | 41 | |
ldap_alias_manager.conf.pod | H A D | 27-Apr-2021 | 2 KiB | 120 | 67 | |
list_config.pod | H A D | 27-Apr-2021 | 132 | 13 | 6 | |
nrcpt_by_domain.conf.pod | H A D | 27-Apr-2021 | 582 | 39 | 20 | |
sympa.conf.pod | H A D | 27-Apr-2021 | 153 | 13 | 6 | |
sympa.wsdl.pod | H A D | 27-Apr-2021 | 603 | 39 | 19 | |
sympa_config.podpl | H A D | 27-Apr-2021 | 15.5 KiB | 550 | 424 | |
sympa_database.podpl | H A D | 27-Apr-2021 | 1.8 KiB | 72 | 52 | |
sympa_scenario.pod | H A D | 27-Apr-2021 | 10.4 KiB | 459 | 296 | |
sympa_toc.pod | H A D | 27-Apr-2021 | 3.9 KiB | 256 | 135 | |
topics.conf.pod | H A D | 27-Apr-2021 | 563 | 39 | 19 | |
trusted_applications.conf.pod | H A D | 27-Apr-2021 | 516 | 36 | 19 |
README.perltidy
1A few Sympa developers prefer to reformat source files casually using 2automated tool, perltidy by Steve Hancock. 3 4To get perltidy, install Perl-Tidy CPAN module or corresponding package 5(if you are using package management system such as RPM, *BSD ports etc.). 6 7dot.perltidyrc is the perltidy configuration file currently used to reformat 8Sympa sources. To use this file, copy it to your home directory renaming it 9to ".perltidyrc", and run: 10 11 perltidy -it=2 source_to_be_reformatted 12 13and so on. To know more about perltidy, run: 14 15 perltidy -h 16 17or visit The Perltidy Home Page: 18 19 http://perltidy.sourceforge.net/ 20 21$$ 22
README.postfix
11- Alias installation script 2 3postfix_manager.pl is no more distributed and should not be usefull 4anymore. Sympa now uses a standard alias_manager.pl. The aliases 5entries can be customized to your needs (to your MTA) via the 6list_aliases.tt2 file. 7 82- Virtual domains management 9 10If you manage virtual robots with Sympa, then 11with Postfix, add an entry to your /etc/postfix/virtual.regexp : 12 /^(.*)my\.domain\.fr$/ ${1}-my.domain.fr 13 14Entries in the 'aliases' file will look like this : 15 sympa-my.domain.fr: "|/home/sympa/bin/sympa.pl sympa@my.domain.fr" 16 ..... 17 listA-my.domain.fr: "|/home/sympa/bin/sympa.pl listA@my.domain.fr" 18 19This way you don't need to run 'postmap' everytime you create a list 20 21