• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/SVN/Notify/Filter/H19-Jul-2008-26985

t/H19-Jul-2008-4227

ChangesH A D19-Jul-2008202 95

MANIFESTH A D19-Jul-2008193 109

META.ymlH A D19-Jul-2008430 1311

Makefile.PLH A D19-Jul-2008617 1816

READMEH A D13-Jul-20081.7 KiB5737

README

1SVN-Notify-Filter-EmailFlatFileDB
2
3SVN::Notify::Filter::EmailFlatFileDB converts Subversion account
4names into email addresses, within the context of SVN::Notify.
5The svnnotify script is often used within Subversion repository
6post-commit hooks, to inform a development team via email about
7changes to their source code.
8
9This module is a filter for SVN::Notify, which will translate user
10account names (e.g. "user1") into email addresses.  It does this
11based on a colon-separated file, like a UNIX passwd file (or more
12usefully) the AuthUserFile used by Apache.  The file path is specified
13via the --account_file option to the svnnotify script, and the index
14of the email field is specified via the --account_field option.
15
16Thanks to David Wheeler for SVN::Notify.  (Obviously, this
17module depends upon that.)
18
19INSTALLATION
20
21To install this module, run the following commands:
22
23	perl Makefile.PL
24	make
25	make test
26	make install
27
28SUPPORT AND DOCUMENTATION
29
30After installing, you can find documentation for this module with the
31perldoc command.
32
33    perldoc SVN::Notify::Filter::EmailFlatFileDB
34
35You can also look for information at:
36
37    RT, CPAN's request tracker
38        http://rt.cpan.org/NoAuth/Bugs.html?Dist=SVN-Notify-Filter-EmailFlatFileDB
39
40    AnnoCPAN, Annotated CPAN documentation
41        http://annocpan.org/dist/SVN-Notify-Filter-EmailFlatFileDB
42
43    CPAN Ratings
44        http://cpanratings.perl.org/d/SVN-Notify-Filter-EmailFlatFileDB
45
46    Search CPAN
47        http://search.cpan.org/dist/SVN-Notify-Filter-EmailFlatFileDB
48
49
50COPYRIGHT AND LICENCE
51
52Copyright (C) 2008 Jeffrey Borlik
53
54This program is free software; you can redistribute it and/or modify it
55under the same terms as Perl itself.
56
57