Changeset 705

Show
Ignore:
Timestamp:
05/11/06 15:22:47
Author:
miyagawa
Message:

defaults to *

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/feature-server/plagger/examples/multibbs-server.yaml

    r702 r705  
    1010    config: 
    1111        port: 10080 
    12         host: 192.168.0.1 
    1312 
    1413  - module: Server::Protocol::SMTP 
    1514    config: 
    1615        port: 10025 
    17         host: 192.168.0.1 
    1816 
    1917  - module: Server::Protocol::POP3 
    2018    config: 
    2119        port: 10110 
    22         host: 192.168.0.1 
    2320        user: user 
    24         password: password 
     21        password: base64::cGFzc3dvcmQ= 
    2522 
    2623  - module: Server::Pull::SimpleBbs 
  • branches/feature-server/plagger/lib/Plagger/Plugin/Server/Engine/PreFork.pm

    r702 r705  
    2626    $self->log(debug => "start."); 
    2727 
    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)) } 
    2929        $self->{context}->protocol->protocols; 
    3030    $self->run(@port);