diff options
author | Mark Sapiro <mark@msapiro.net> | 2018-06-14 10:04:45 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2018-06-14 10:04:45 -0700 |
commit | 022af5c3d16c45b2787da343ffd856e8d65ffb5f (patch) | |
tree | 581f008342ee022f0a08b88f693a8528966a9aa4 /contrib/README.sitemapgen | |
parent | d4bf95bd97ebaeebb5291c4f7d9f1d90ff7414fd (diff) | |
parent | 04b2ea680f17d85a87d4fd570b9d40bc5f9932a0 (diff) | |
download | mailman2-022af5c3d16c45b2787da343ffd856e8d65ffb5f.tar.gz mailman2-022af5c3d16c45b2787da343ffd856e8d65ffb5f.tar.xz mailman2-022af5c3d16c45b2787da343ffd856e8d65ffb5f.zip |
Added contrib/sitemapgen.
Diffstat (limited to 'contrib/README.sitemapgen')
-rw-r--r-- | contrib/README.sitemapgen | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/contrib/README.sitemapgen b/contrib/README.sitemapgen new file mode 100644 index 00000000..d4daa401 --- /dev/null +++ b/contrib/README.sitemapgen @@ -0,0 +1,11 @@ +Hacked from bin/sync_members + +Copy mailman/contrib/sitemapgen to mailman/bin/ and execute it as so: + + /path/to/mailman/bin/sitemapgen -l <listname> + +Alternatively add it to cron like so: + +5 0 * * * for l in `/path/to/mailman/bin/list_lists -apb`; do + /path/to/mailman/bin/sitemapgen $l; done + |