~ubuntu-branches/ubuntu/vivid/postfix/vivid-proposed

« back to all changes in this revision

Viewing changes to src/master/single_server.c

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2011-02-22 05:26:41 UTC
  • mto: (33.1.4 natty) (39.1.4 oneiric)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: james.westby@ubuntu.com-20110222052641-9kcxe1gt157c31j9
Tags: upstream-2.8.0
ImportĀ upstreamĀ versionĀ 2.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
/*      global Postfix configuration file. Tables are loaded in the
68
68
/*      order as specified, and multiple instances of the same type
69
69
/*      are allowed.
 
70
/* .IP "MAIL_SERVER_NBOOL_TABLE (CONFIG_NBOOL_TABLE *)"
 
71
/*      A table with configurable parameters, to be loaded from the
 
72
/*      global Postfix configuration file. Tables are loaded in the
 
73
/*      order as specified, and multiple instances of the same type
 
74
/*      are allowed.
70
75
/* .IP "MAIL_SERVER_PRE_INIT (void *(char *service_name, char **argv))"
71
76
/*      A pointer to a function that is called once
72
77
/*      by the skeleton after it has read the global configuration file
562
567
        case MAIL_SERVER_NINT_TABLE:
563
568
            get_mail_conf_nint_table(va_arg(ap, CONFIG_NINT_TABLE *));
564
569
            break;
 
570
        case MAIL_SERVER_NBOOL_TABLE:
 
571
            get_mail_conf_nbool_table(va_arg(ap, CONFIG_NBOOL_TABLE *));
 
572
            break;
565
573
        case MAIL_SERVER_PRE_INIT:
566
574
            pre_init = va_arg(ap, MAIL_SERVER_INIT_FN);
567
575
            break;