-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from atc0005/docs-cleanup
General cleanup work towards v0.1.0 release
- Loading branch information
Showing
7 changed files
with
211 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
This repo contains various tools used to monitor mail services. | ||
PROJECT HOME | ||
See our GitHub repo (https://github.com/atc0005/check-mail) for the latest | ||
code, to file an issue or submit improvements for review and potential | ||
inclusion into the project. | ||
PURPOSE | ||
Monitor remote mail services. | ||
FEATURES | ||
• Nagios plugin for monitoring one or mail remote IMAP mailboxes | ||
USAGE | ||
$ ./check_imap_mailbox | ||
check_imap_mailbox x.y.z | ||
https://github.com/atc0005/check-mail | ||
Usage of ./check_imap_mailbox: | ||
-folders value | ||
Folders or IMAP "mailboxes" to check for mail. This value is provided as a comma-separated list. | ||
-log-level string | ||
Sets log level to one of disabled, panic, fatal, error, warn, info, debug or trace. (default "info") | ||
-password string | ||
The remote mail server account password. | ||
-port int | ||
TCP port used to connect to the remote mail server. This is usually the same port used for TLS encrypted IMAP connections. (default 993) | ||
-server string | ||
The fully-qualified domain name of the remote mail server. | ||
-username string | ||
The account used to login to the remote mail server. This is often in the form of an email address. | ||
*/ | ||
package main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters