Changeset 705
- Timestamp:
- 05/11/06 15:22:47
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/feature-server/plagger/examples/multibbs-server.yaml
r702 r705 10 10 config: 11 11 port: 10080 12 host: 192.168.0.113 12 14 13 - module: Server::Protocol::SMTP 15 14 config: 16 15 port: 10025 17 host: 192.168.0.118 16 19 17 - module: Server::Protocol::POP3 20 18 config: 21 19 port: 10110 22 host: 192.168.0.123 20 user: user 24 password: password21 password: base64::cGFzc3dvcmQ= 25 22 26 23 - module: Server::Pull::SimpleBbs branches/feature-server/plagger/lib/Plagger/Plugin/Server/Engine/PreFork.pm
r702 r705 26 26 $self->log(debug => "start."); 27 27 28 my @port = map{ (port => sprintf('%s:%s|%s', $_->conf->{host} , $_->conf->{port}, $_->proto)) }28 my @port = map{ (port => sprintf('%s:%s|%s', $_->conf->{host} || '*', $_->conf->{port}, $_->proto)) } 29 29 $self->{context}->protocol->protocols; 30 30 $self->run(@port);
