0.0
No commit activity in last 3 years
No release in over 3 years
Postfix daemon
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.16
~> 10.0
~> 3.0
 Project Readme

PostfixDaemon

Postfixのデーモンプログラムを作るためのライブラリです。

Installation

Add this line to your application's Gemfile:

gem 'postfix_daemon'

And then execute:

$ bundle

Or install it yourself as:

$ gem install postfix_daemon

Usage

プログラムを書きます。

入力を大文字に変換して返すプログラムの例:

#!/path/to/ruby

require 'postfix_daemon'

# エラー終了してもどこにも出力されないのでリダイレクトしといた方がよさそう
$stderr.reopen("/tmp/error.log", "a+")

PostfixDaemon.start do |socket, addr|
  socket.puts "you are #{addr.inspect}"
  while s = socket.gets
    s = s.force_encoding("utf-8").scrub
    socket.puts s.upcase
  end
end

プログラムを /usr/lib/postfix/sbin に置きます。

# cp hoge.rb /usr/lib/postfix/sbin/hoge
# chmod +x /usr/lib/postfix/sbin/hoge

master.cf に追加:

12345   inet   -   -   -   -   -   hoge

postfix reload

# postfix reload
% nc localhost 12345
you are #<Addrinfo: 127.0.0.1:59312 TCP>
abcdefg
ABCDEFG
^C