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

« back to all changes in this revision

Viewing changes to src/local/local.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:
381
381
/*      Available in Postfix version 2.5.3 and later:
382
382
/* .IP "\fBstrict_mailbox_ownership (yes)\fR"
383
383
/*      Defer delivery when a mailbox file is not owned by its recipient.
 
384
/* .IP "\fBreset_owner_alias (no)\fR"
 
385
/*      Reset the \fBlocal\fR(8) delivery agent's idea of the owner-alias
 
386
/*      attribute, when delivering mail to a child alias that does not have
 
387
/*      its own owner alias.
384
388
/* DELIVERY METHOD CONTROLS
385
389
/* .ad
386
390
/* .fi
529
533
/* .IP "\fBrecipient_delimiter (empty)\fR"
530
534
/*      The separator between user names and address extensions (user+foo).
531
535
/* .IP "\fBrequire_home_directory (no)\fR"
532
 
/*      Whether or not a \fBlocal\fR(8) recipient's home directory must exist
 
536
/*      Require that a \fBlocal\fR(8) recipient's home directory exists
533
537
/*      before mail delivery is attempted.
534
538
/* .IP "\fBsyslog_facility (mail)\fR"
535
539
/*      The syslog facility of Postfix logging.
622
626
char   *var_allow_files;
623
627
char   *var_alias_maps;
624
628
int     var_dup_filter_limit;
625
 
int     var_command_maxtime;
 
629
int     var_command_maxtime;            /* You can now leave this here. */
626
630
char   *var_home_mailbox;
627
631
char   *var_mailbox_command;
628
632
char   *var_mailbox_cmd_maps;
648
652
char   *var_mailbox_lock;
649
653
int     var_mailbox_limit;
650
654
bool    var_frozen_delivered;
 
655
bool    var_reset_owner_attr;
651
656
bool    var_strict_mbox_owner;
652
657
 
653
658
int     local_cmd_deliver_mask;
896
901
        VAR_STAT_HOME_DIR, DEF_STAT_HOME_DIR, &var_stat_home_dir,
897
902
        VAR_MAILTOOL_COMPAT, DEF_MAILTOOL_COMPAT, &var_mailtool_compat,
898
903
        VAR_FROZEN_DELIVERED, DEF_FROZEN_DELIVERED, &var_frozen_delivered,
 
904
        VAR_RESET_OWNER_ATTR, DEF_RESET_OWNER_ATTR, &var_reset_owner_attr,
899
905
        VAR_STRICT_MBOX_OWNER, DEF_STRICT_MBOX_OWNER, &var_strict_mbox_owner,
900
906
        0,
901
907
    };