Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kennethkalmer/mua-proxy
Transparent proxy server between MUA's (Mail User Agents) and POP3 servers
https://github.com/kennethkalmer/mua-proxy
Last synced: about 15 hours ago
JSON representation
Transparent proxy server between MUA's (Mail User Agents) and POP3 servers
- Host: GitHub
- URL: https://github.com/kennethkalmer/mua-proxy
- Owner: kennethkalmer
- Created: 2009-05-06T02:49:54.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2009-05-06T02:55:12.000Z (over 15 years ago)
- Last Synced: 2024-04-16T05:35:26.493Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 78.1 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
DaemonKit README
================DaemonKit has generated a skeleton Ruby daemon for you to build on. Please read
through this file to ensure you get going quickly.Directories
===========bin/
mua-proxy - Stub executable to control your daemon withconfig/
Environment configuration fileslib/
Place for your librarieslibexec/
mua-proxy.rb - Your daemon codelog/
Log files based on the environment namespec/
rspec's hometasks/
Place for rake tasksvendor/
Place for unpacked gems and DaemonKittmp/
Scratch folderLogging
=======One of the biggest issues with writing daemons are gettign insight into what your
daemons are doing. Logging with DaemonKit is simplified as DaemonKit creates log
files per environment in log.On all environments except production the log level is set to DEBUG, but you can
toggle the log level by sending the running daemon SIGUSR1 and SIGUSR2 signals.
SIGUSR1 will toggle between DEBUG and INFO levels, SIGUSR2 will blatantly set the
level to DEBUG.