~kosova/+junk/tuxfamily-twiki

« back to all changes in this revision

Viewing changes to foswiki/lib/Foswiki/Contrib/MailerContrib/Constants.pm

  • Committer: James Michael DuPont
  • Date: 2009-07-18 19:58:49 UTC
  • Revision ID: jamesmikedupont@gmail.com-20090718195849-vgbmaht2ys791uo2
added foswiki

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
=pod
 
2
 
 
3
---+ package MailerConst
 
4
 
 
5
$ALWAYS - always send, even if there are no changes
 
6
$FULL_TOPIC - send the full topic rather than just changes
 
7
 
 
8
Note that this package is defined in a file with a name different to that
 
9
of the package. This is intentional (it's to keep the length of the constants
 
10
package name short).
 
11
 
 
12
=cut
 
13
 
 
14
package MailerConst;
 
15
 
 
16
our $ALWAYS       = 1; # Always send, even if there are no changes
 
17
our $FULL_TOPIC   = 2; # Send the full topic rather than just changes
 
18
 
 
19
# ? = FULL_TOPIC
 
20
# ! = FULL_TOPIC | ALWAYS
 
21
 
 
22
1;