~ubuntu-branches/ubuntu/vivid/exim4/vivid

« back to all changes in this revision

Viewing changes to .pc/32_exim4.dpatch/src/exiqgrep.src

  • Committer: Package Import Robot
  • Author(s): Corey Bryant
  • Date: 2014-08-04 11:48:39 UTC
  • mfrom: (56.1.2 utopic)
  • Revision ID: package-import@ubuntu.com-20140804114839-xoulpcx9nxi5m72u
Tags: 4.84~RC1-3ubuntu1
* Merge from Debian unstable (LP: #1351470). Remaining changes:
  - Show Ubuntu distribution on smtp:
    + debian/patches/fix_smtp_banner.patch: updated SMTP banner
      with Ubuntu distribution
    + debian/control: added lsb-release build dependency
  - Don't provide default-mta; in Ubuntu, we want postfix to be the
    default.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
  $base = 62;
44
44
};
45
45
 
46
 
getopts('hf:r:y:o:s:zxlibRc',\%opt);
 
46
getopts('hf:r:y:o:s:C:zxlibRca',\%opt);
47
47
if ($opt{h}) { &help; exit;}
 
48
if ($opt{a}) { $eargs = '-bp'; }
 
49
if ($opt{C} && -e $opt{C} && -f $opt{C} && -R $opt{C}) { $eargs .= ' -C '.$opt{C}; }
48
50
 
49
51
# Read message queue output into hash
50
52
&collect();
60
62
Exim message queue display utility.
61
63
 
62
64
        -h              This help message.
 
65
        -C              Specify which exim.conf to use.
63
66
 
64
67
Selection criteria:
65
68
        -f <regexp>     Match sender address sender (field is "< >" wrapped)
78
81
        -i              Message IDs only
79
82
        -b              Brief Format
80
83
        -R              Reverse order
 
84
        -a              All recipients (including delivered)
81
85
EOF
82
86
}
83
87