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

« back to all changes in this revision

Viewing changes to src/master/trigger_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:
74
74
/*      global Postfix configuration file. Tables are loaded in the
75
75
/*      order as specified, and multiple instances of the same type
76
76
/*      are allowed.
 
77
/* .IP "MAIL_SERVER_NBOOL_TABLE (CONFIG_NBOOL_TABLE *)"
 
78
/*      A table with configurable parameters, to be loaded from the
 
79
/*      global Postfix configuration file. Tables are loaded in the
 
80
/*      order as specified, and multiple instances of the same type
 
81
/*      are allowed.
77
82
/* .IP "MAIL_SERVER_PRE_INIT (void *(char *service_name, char **argv))"
78
83
/*      A pointer to a function that is called once
79
84
/*      by the skeleton after it has read the global configuration file
573
578
        case MAIL_SERVER_NINT_TABLE:
574
579
            get_mail_conf_nint_table(va_arg(ap, CONFIG_NINT_TABLE *));
575
580
            break;
 
581
        case MAIL_SERVER_NBOOL_TABLE:
 
582
            get_mail_conf_nbool_table(va_arg(ap, CONFIG_NBOOL_TABLE *));
 
583
            break;
576
584
        case MAIL_SERVER_PRE_INIT:
577
585
            pre_init = va_arg(ap, MAIL_SERVER_INIT_FN);
578
586
            break;