File: mailloop.monitor.README

package info (click to toggle)
mon-contrib 1.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 896 kB
  • sloc: perl: 5,510; sh: 391; python: 118; makefile: 72
file content (58 lines) | stat: -rw-r--r-- 2,517 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# mailloop.monitor - sends email to mailboxes that are expected to send
# the mail back to the sender. Probably not hard to do with procmail,
etc.
# I've only used a reflector agent for Lotus Notes. Instead of "hosts" in
# a hostgroup, use email addresses you want to send bounce tests to. The
# code still refers to these as hosts.
#
# You can use as many addresses as you'd like, but you'll need to use a
# unique from address for each hostgroup that calls this monitor, because
# it eats all the mail this running copy of the monitor didn't send.
# Otherwise, previously delayed mail might lay around forever.
#
# The monitor then polls a POP3 account for the mail it sent. Don't use
# that mailbox for anything else, the monitor will delete all your mail!
# I'm not kidding, I didn't say "might", it *will*.
#
# This monitor assumes the local sendmail knows how to get the mail to
# the the first relay in the loop you're testing. It also assumes that
# the last host knows to deliver mail sent to the configured from
# address so that it shows up in the POP server we poll.
#
# Takes 5 options:
# -d Debug Mode. Not really compatible with normal mon scheduling,
# because it doesn't log to syslog or anything, just print to STDOUT.
# You'll have to call the monitor by hand to use this option.
# Mostly helpful to debug your POP/SMTP setup.
#
# -f Set the from address, this option will also set the POP user to
# all the bits before the '@'. So, don't do any wild aliasing...
#
# -p Set the POP password. Defaults to null password
#
# -s Set the POP server. Defaults to localhost.
#
# -t Standard monitor timeout option.
#

#
# $Id: mailloop.monitor.README,v 1.1.1.1 2005/02/18 17:52:24 trockij Exp $
#
# Copyright 2000 Shared Medical Systems, Inc.
# Author: Bill Smargiassi
# Email: william.smargiassi@smed.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
USA