qmail-tools-0.1.0/0000755000000000000000000000000011005133611010626 5ustar qmail-tools-0.1.0/.git/0000755000000000000000000000000011005133700011466 5ustar qmail-tools-0.1.0/.git/refs/0000755000000000000000000000000011005133534012432 5ustar qmail-tools-0.1.0/.git/refs/heads/0000755000000000000000000000000011005133630013513 5ustar qmail-tools-0.1.0/.git/refs/heads/debian-sid0000644000000000000000000000005111004154757015445 0ustar 02f108371802b08ed33f9079a38146ca9f74db1d qmail-tools-0.1.0/.git/refs/tags/0000755000000000000000000000000011005133700013363 5ustar qmail-tools-0.1.0/.git/refs/tags/debian-0.1.00000644000000000000000000000005111005133700015156 0ustar 02465d5722126b1230d11ef54edeb1b031c084a6 qmail-tools-0.1.0/.git/refs/remotes/0000755000000000000000000000000011005133534014110 5ustar qmail-tools-0.1.0/.git/refs/remotes/origin/0000755000000000000000000000000011005133655015403 5ustar qmail-tools-0.1.0/.git/refs/remotes/origin/debian-sid0000644000000000000000000000005111005133643017316 0ustar 02f108371802b08ed33f9079a38146ca9f74db1d qmail-tools-0.1.0/.git/branches/0000755000000000000000000000000011003457300013256 5ustar qmail-tools-0.1.0/.git/hooks/0000755000000000000000000000000011003457300012614 5ustar qmail-tools-0.1.0/.git/hooks/prepare-commit-msg0000644000000000000000000000223411003457300016250 0ustar #!/bin/sh # # An example hook script to prepare the commit log message. # Called by git-commit with the name of the file that has the # commit message, followed by the description of the commit # message's source. The hook's purpose is to edit the commit # message file. If the hook fails with a non-zero status, # the commit is aborted. # # To enable this hook, make this file executable. # This hook includes three examples. The first comments out the # "Conflicts:" part of a merge commit. # # The second includes the output of "git diff --name-status -r" # into the message, just before the "git status" output. It is # commented because it doesn't cope with --amend or with squashed # commits. # # The third example adds a Signed-off-by line to the message, that can # still be edited. This is rarely a good idea. case "$2 $3" in merge) sed -i '/^Conflicts:/,/#/!b;s/^/# &/;s/^# #/#/' "$1" ;; # ""|template) # perl -i -pe ' # print "\n" . `git diff --cached --name-status -r` # if /^#/ && $first++ == 0' "$1" ;; *) ;; esac # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" qmail-tools-0.1.0/.git/hooks/applypatch-msg0000644000000000000000000000067111003457300015474 0ustar #!/bin/sh # # An example hook script to check the commit log message taken by # applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. The hook is # allowed to edit the commit message file. # # To enable this hook, make this file executable. . git-sh-setup test -x "$GIT_DIR/hooks/commit-msg" && exec "$GIT_DIR/hooks/commit-msg" ${1+"$@"} : qmail-tools-0.1.0/.git/hooks/commit-msg0000644000000000000000000000156711003457300014624 0ustar #!/bin/sh # # An example hook script to check the commit log message. # Called by git-commit with one argument, the name of the file # that has the commit message. The hook should exit with non-zero # status after issuing an appropriate message if it wants to stop the # commit. The hook is allowed to edit the commit message file. # # To enable this hook, make this file executable. # Uncomment the below to add a Signed-off-by line to the message. # Doing this in a hook is a bad idea in general, but the prepare-commit-msg # hook is more suited to it. # # SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') # grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" # This example catches duplicate Signed-off-by lines. test "" = "$(grep '^Signed-off-by: ' "$1" | sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { echo >&2 Duplicate Signed-off-by lines. exit 1 } qmail-tools-0.1.0/.git/hooks/post-commit0000644000000000000000000000023011003457300015005 0ustar #!/bin/sh # # An example hook script that is called after a successful # commit is made. # # To enable this hook, make this file executable. : Nothing qmail-tools-0.1.0/.git/hooks/post-receive0000644000000000000000000000077611003457300015156 0ustar #!/bin/sh # # An example hook script for the post-receive event # # This script is run after receive-pack has accepted a pack and the # repository has been updated. It is passed arguments in through stdin # in the form # # For example: # aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master # # see contrib/hooks/ for an sample, or uncomment the next line (on debian) # #. /usr/share/doc/git-core/contrib/hooks/post-receive-email qmail-tools-0.1.0/.git/hooks/post-update0000644000000000000000000000031711003457300015005 0ustar #!/bin/sh # # An example hook script to prepare a packed repository for use over # dumb transports. # # To enable this hook, make this file executable by "chmod +x post-update". exec git-update-server-info qmail-tools-0.1.0/.git/hooks/pre-applypatch0000644000000000000000000000060311003457300015467 0ustar #!/bin/sh # # An example hook script to verify what is about to be committed # by applypatch from an e-mail message. # # The hook should exit with non-zero status after issuing an # appropriate message if it wants to stop the commit. # # To enable this hook, make this file executable. . git-sh-setup test -x "$GIT_DIR/hooks/pre-commit" && exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"} : qmail-tools-0.1.0/.git/hooks/pre-commit0000644000000000000000000000325211003457300014615 0ustar #!/bin/sh # # An example hook script to verify what is about to be committed. # Called by git-commit with no arguments. The hook should # exit with non-zero status after issuing an appropriate message if # it wants to stop the commit. # # To enable this hook, make this file executable. # This is slightly modified from Andrew Morton's Perfect Patch. # Lines you introduce should not have trailing whitespace. # Also check for an indentation that has SP before a TAB. if git-rev-parse --verify HEAD 2>/dev/null then git-diff-index -p -M --cached HEAD -- else # NEEDSWORK: we should produce a diff with an empty tree here # if we want to do the same verification for the initial import. : fi | perl -e ' my $found_bad = 0; my $filename; my $reported_filename = ""; my $lineno; sub bad_line { my ($why, $line) = @_; if (!$found_bad) { print STDERR "*\n"; print STDERR "* You have some suspicious patch lines:\n"; print STDERR "*\n"; $found_bad = 1; } if ($reported_filename ne $filename) { print STDERR "* In $filename\n"; $reported_filename = $filename; } print STDERR "* $why (line $lineno)\n"; print STDERR "$filename:$lineno:$line\n"; } while (<>) { if (m|^diff --git a/(.*) b/\1$|) { $filename = $1; next; } if (/^@@ -\S+ \+(\d+)/) { $lineno = $1 - 1; next; } if (/^ /) { $lineno++; next; } if (s/^\+//) { $lineno++; chomp; if (/\s$/) { bad_line("trailing whitespace", $_); } if (/^\s* \t/) { bad_line("indent SP followed by a TAB", $_); } if (/^([<>])\1{6} |^={7}$/) { bad_line("unresolved merge conflict", $_); } } } exit($found_bad); ' qmail-tools-0.1.0/.git/hooks/pre-rebase0000644000000000000000000001024611003457300014567 0ustar #!/bin/sh # # Copyright (c) 2006 Junio C Hamano # publish=next basebranch="$1" if test "$#" = 2 then topic="refs/heads/$2" else topic=`git symbolic-ref HEAD` fi case "$basebranch,$topic" in master,refs/heads/??/*) ;; *) exit 0 ;# we do not interrupt others. ;; esac # Now we are dealing with a topic branch being rebased # on top of master. Is it OK to rebase it? # Is topic fully merged to master? not_in_master=`git-rev-list --pretty=oneline ^master "$topic"` if test -z "$not_in_master" then echo >&2 "$topic is fully merged to master; better remove it." exit 1 ;# we could allow it, but there is no point. fi # Is topic ever merged to next? If so you should not be rebasing it. only_next_1=`git-rev-list ^master "^$topic" ${publish} | sort` only_next_2=`git-rev-list ^master ${publish} | sort` if test "$only_next_1" = "$only_next_2" then not_in_topic=`git-rev-list "^$topic" master` if test -z "$not_in_topic" then echo >&2 "$topic is already up-to-date with master" exit 1 ;# we could allow it, but there is no point. else exit 0 fi else not_in_next=`git-rev-list --pretty=oneline ^${publish} "$topic"` perl -e ' my $topic = $ARGV[0]; my $msg = "* $topic has commits already merged to public branch:\n"; my (%not_in_next) = map { /^([0-9a-f]+) /; ($1 => 1); } split(/\n/, $ARGV[1]); for my $elem (map { /^([0-9a-f]+) (.*)$/; [$1 => $2]; } split(/\n/, $ARGV[2])) { if (!exists $not_in_next{$elem->[0]}) { if ($msg) { print STDERR $msg; undef $msg; } print STDERR " $elem->[1]\n"; } } ' "$topic" "$not_in_next" "$not_in_master" exit 1 fi exit 0 ################################################################ This sample hook safeguards topic branches that have been published from being rewound. The workflow assumed here is: * Once a topic branch forks from "master", "master" is never merged into it again (either directly or indirectly). * Once a topic branch is fully cooked and merged into "master", it is deleted. If you need to build on top of it to correct earlier mistakes, a new topic branch is created by forking at the tip of the "master". This is not strictly necessary, but it makes it easier to keep your history simple. * Whenever you need to test or publish your changes to topic branches, merge them into "next" branch. The script, being an example, hardcodes the publish branch name to be "next", but it is trivial to make it configurable via $GIT_DIR/config mechanism. With this workflow, you would want to know: (1) ... if a topic branch has ever been merged to "next". Young topic branches can have stupid mistakes you would rather clean up before publishing, and things that have not been merged into other branches can be easily rebased without affecting other people. But once it is published, you would not want to rewind it. (2) ... if a topic branch has been fully merged to "master". Then you can delete it. More importantly, you should not build on top of it -- other people may already want to change things related to the topic as patches against your "master", so if you need further changes, it is better to fork the topic (perhaps with the same name) afresh from the tip of "master". Let's look at this example: o---o---o---o---o---o---o---o---o---o "next" / / / / / a---a---b A / / / / / / / / c---c---c---c B / / / / \ / / / / b---b C \ / / / / / \ / ---o---o---o---o---o---o---o---o---o---o---o "master" A, B and C are topic branches. * A has one fix since it was merged up to "next". * B has finished. It has been fully merged up to "master" and "next", and is ready to be deleted. * C has not merged to "next" at all. We would want to allow C to be rebased, refuse A, and encourage B to be deleted. To compute (1): git-rev-list ^master ^topic next git-rev-list ^master next if these match, topic has not merged in next at all. To compute (2): git-rev-list master..topic if this is empty, it is fully merged to "master". qmail-tools-0.1.0/.git/hooks/update0000644000000000000000000000553611003457300014032 0ustar #!/bin/sh # # An example hook script to blocks unannotated tags from entering. # Called by git-receive-pack with arguments: refname sha1-old sha1-new # # To enable this hook, make this file executable by "chmod +x update". # # Config # ------ # hooks.allowunannotated # This boolean sets whether unannotated tags will be allowed into the # repository. By default they won't be. # hooks.allowdeletetag # This boolean sets whether deleting tags will be allowed in the # repository. By default they won't be. # hooks.allowdeletebranch # This boolean sets whether deleting branches will be allowed in the # repository. By default they won't be. # # --- Command line refname="$1" oldrev="$2" newrev="$3" # --- Safety check if [ -z "$GIT_DIR" ]; then echo "Don't run this script from the command line." >&2 echo " (if you want, you could supply GIT_DIR then run" >&2 echo " $0 )" >&2 exit 1 fi if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then echo "Usage: $0 " >&2 exit 1 fi # --- Config allowunannotated=$(git config --bool hooks.allowunannotated) allowdeletebranch=$(git config --bool hooks.allowdeletebranch) allowdeletetag=$(git config --bool hooks.allowdeletetag) # check for no description projectdesc=$(sed -e '1q' "$GIT_DIR/description") if [ -z "$projectdesc" -o "$projectdesc" = "Unnamed repository; edit this file to name it for gitweb." ]; then echo "*** Project description file hasn't been set" >&2 exit 1 fi # --- Check types # if $newrev is 0000...0000, it's a commit to delete a ref. if [ "$newrev" = "0000000000000000000000000000000000000000" ]; then newrev_type=delete else newrev_type=$(git-cat-file -t $newrev) fi case "$refname","$newrev_type" in refs/tags/*,commit) # un-annotated tag short_refname=${refname##refs/tags/} if [ "$allowunannotated" != "true" ]; then echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 exit 1 fi ;; refs/tags/*,delete) # delete tag if [ "$allowdeletetag" != "true" ]; then echo "*** Deleting a tag is not allowed in this repository" >&2 exit 1 fi ;; refs/tags/*,tag) # annotated tag ;; refs/heads/*,commit) # branch ;; refs/heads/*,delete) # delete branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a branch is not allowed in this repository" >&2 exit 1 fi ;; refs/remotes/*,commit) # tracking branch ;; refs/remotes/*,delete) # delete tracking branch if [ "$allowdeletebranch" != "true" ]; then echo "*** Deleting a tracking branch is not allowed in this repository" >&2 exit 1 fi ;; *) # Anything else (is there anything else?) echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 exit 1 ;; esac # --- Finished exit 0 qmail-tools-0.1.0/.git/info/0000755000000000000000000000000011003457300012424 5ustar qmail-tools-0.1.0/.git/info/exclude0000644000000000000000000000036011003457300013777 0ustar # git-ls-files --others --exclude-from=.git/info/exclude # Lines that start with '#' are comments. # For a project mostly in C, the following would be a good set of # exclude patterns (uncomment them if you want to use them): # *.[oa] # *~ qmail-tools-0.1.0/.git/description0000644000000000000000000000007211003457300013736 0ustar Unnamed repository; edit this file to name it for gitweb. qmail-tools-0.1.0/.git/objects/0000755000000000000000000000000011005133700013117 5ustar qmail-tools-0.1.0/.git/objects/pack/0000755000000000000000000000000011003457300014040 5ustar qmail-tools-0.1.0/.git/objects/info/0000755000000000000000000000000011003457300014055 5ustar qmail-tools-0.1.0/.git/objects/f5/0000755000000000000000000000000011003457316013443 5ustar qmail-tools-0.1.0/.git/objects/f5/ba1aa7f51b188804c867593fe18e9388be87fc0000644000000000000000000003314111003457316020634 0ustar xv%Ec۶mw̎m۶mVƎm;:S}cU&v&$켬 ı0 UB 7ے~+P{RZ)\tK&RRRUu dF(@'wt?]JI(Pү܎u+ w?b0jd={|z|;<< nz -'Hߞg'ӿ> ~;m{NOC\]HLvdy>a>`@w{ޣ0}iW*#6,pH+?O}GyIsƛ^H$*Mu]>/ȳڿȜ0?tXk蜑#;\!D NɯAA)$QYkǜˌD8 j쩀<_:Px)tl0蜈=!_o\/^~~^Ox/]_y>#ޜE@#?!hI\깧וMx) finVuc,Jiu o_ؐY᛺?<9Hhx Qj7ʺV0уyh>B (A3$/ ˔H8Hj*$Asc1q(T.VnJzWt #9r]ud7}#!Qcr 2p '4X qDb.Ҙ?ƀLll=pEf }9 Y~Zoacҙ;yYHTדrW_3W7;_Bߨsˉ7nN^%~~l*?˱luHxϛz?[Ro>Q/Ts%AxG}gA܋/"d43Ngژ3qשs%+T*Sh\t>c4 Onό[p#0oΆa„ {U{`dA(~R,*G'VI$ x6HsO9 ׅ(P5C-hZ3Z_m:Ł^'z (N[ ?3kt'li oph虘Kh\qK61ё̣?4!5}pAWG$21p-ƥ(;}J(1>m*ͱ8D}1U FINh&Re5HA gadDۥy3蕎hlldpn1T#]U( ;g6^(AvbWc ȠBd{@r6D`ñ a,XKaX =Egk {#1鱪9`CR (.Y̑@YNtHgZmfB%E3iói!U %1p7P݋Zek @&5]𐍌];-N 6La?:$QуΠ~ wVu~i]"M[ELƐ5;3 SHJ\k3f5#3}rH(|OVxaDGښLsftov_g:`NuJ .B,%vC B޸.?S{C(_q BN1Ԯ?l+TݏWG(aQMiY_M}탼$n>!1B* zzN̓da#+:uw=|"[74dZ+xL> 8L*]gf!j7V0"c~V`6%Rԯ_RKrV{l saNxoE,a߳nҝ3ZfLi'qH$$F0y]k\J_֣=If7E"r#J8l\;*r\mܗ >j'de_y`huD7^!.0rôcS0d( "gvHc͵y76$n\RjҘ]@oĬx,%,,uKGjs@q.ЁƇOă8 ز>o*gLu1ėLy!&_/\5r+jRF0\Z  vzL!fz 7GTL+/`lܭV-)='+ß6mZ)F$Dw9#w*HD&*3ȉQcK8cfٞ ˘G;[#!bY?H_A0Q?&/3!s=@?>#&9֦|A0娰Jo`bݕTԝ)ۊQJ֥?OvOų3MbD>h:$FayeE {7-bD::ddbqEyOu jM;3U B5{;2—K([]v̑')37z!/>|1?R+ Z hKSa)R )({YQ3l a n\1| 'CK !F~+DrTK—\){BFS'fuI:(:)(Fdg ДX`%DuAދy_Kd׽2pShhw/3[z ,&C[#FNKBVV6B&rJ⅋SxCBZ}`-hq"V<&e &9~ VIE(]1 PWŗlRº"QW<`V9IˇZ$x5}w JF%lGydZ0hJ_N&o>yFIL{6ޯK=Yx?9ur=:wJrt{(`ÙqoU*0`?d ,{GD=X GKr%!Tt+b::ЂD}a m"DoƆtIby\8žN٩Ke;8uӁc54}!:^1uW2d&B ;RA~oݞ*yNv,c -Ziٱf:G%.l_W8U;;CqVwFO]0kVȉ"z;NОHn0)l,$D&,u Č܊U'4QYgu`yyE?tCMQ l^$ $n?-bҷ{|{]TtF|#eeyTk.*GDb~ X.t=,i{{F#WU

Ԃ\-hQПr2%)$p.gRb\vbtYD g|sZȮZƶ%=V/ɫm?YUN`(IΈ3!vg$ALv N^0gT~cfCk˾-W(),]Cy͞f4ĄG[9y EXd*Y;-TDdCoSZT>QF|jHоF5le{^4Yԑo(}Auܣ2Ǩ< t^dA(Wd_N YSPy3CI5ÄT(=mKd ņF5&!;EynQ6fJ-&6@!MbԦaC򢳤U1E9b$^9@'a0:پÓvfDr^6 t2`ec0P`7P>]sÃ4pDfA3]yaQ;5%9Vwe ڞVU:Lb7+u[|r&ik$*AEj{TZ<> WxŭT&saJhSm.'$,uTM(5yYrkg?i]%'Ǐip9_3dKފ`ɸs^$wy@%L=v5!E0EXLfS1:`nE"WE#zݏa/a@Nմ' â4~9nT4WUyo)8P"\{wz'PªAz xZx0\{/v/Z;-v".TYKuXPSH>SL89AcS}ܼ@T{Z'6,¡O KVղwa̻d?o Y%z"ExAǏS82P^ ݜ^*VKj\2HxSR_ %c<;y\N|{4<$^󣖸P ; bjN#?BGɄ:I +%ӂ9;VRdmPW& ik6~lOu/M@QD&Qϥ J&`y:l+` tj)ɮ|R]/5у@w"rQsEZ +(>߷v |lfuA1x̷Dͤ|X$ j3K@vH=75w/_q\^3&DKi%5qx88eqBSR$hCdM+ao 2U7vl@6QIW/Aٯ톩LÒfAa;8ęJ/eVf&6NUT+Ӛi-:i\Y/[u='QBrIC[%!zo+ )96ՠuim Ȭ[@{v7~s5ÍNf\<)xͩVm/΋fVήS:7=2!WK:#ϳJՍb`%sҤMGL@+GYc@zlU O/9lNyf*Ǿ3?X˽g̿_F iby2Uv2׃NF4"6h\>==w`|֤df2k08L7ggVYzJf=%\9'We.͹SXɾN̩9'uS:*(Y)aAF^{|Jۤ-<&ct]5~W}mUI~YNN}sꎐrmC[T*Q<Xys^C_r$!umKegB'1L~lb:/F>D7spZR݅/nn,ݲwGnkF>@g -s1W9оjݙ>l8Wc(l)%ĥkSXgޡTxA%G%v $p~\V/`)NHU ܊+LPza+(sFY܂d]ZoX5UxŮ_ i@CJmZ7gOߐHo͠BA-Y|Z_y]j p0M׳Yt4d[2[wL3c0n4m@LXg͏M×П"bFhf0(.<0߉soptd:K lo.z*Z<O~a@ͮ0fy-|W۫߯ili2sW+SH39Űw`+GE*j/R:mhoPCNލIMG G|7ԅSdbG`& c5qO-i9&"?@,E շ^?ņÙñP; {x d0B)2rK{i 5`Yz1dxy>[݋_n >S5sB)I٘^q6^@!Kf' b**ƳWEyb>hH<+d'b= r4mH򷵂0c),_@7_r! Wq7n =Կ?i+Sp,N\abׂxf E+G{m n8D:5lW[MFrQ-ՈM*WqzrN ·,h:&krہv$\ƞzp;Ew:X󫮿RHz[¦xzx>s&wO\,k9:NmD br}Lalc[i+eH': <2t.:5AMi@")ӛQb9E& C/`3٬f $2h>&,#XqUlbۏx tl|RN;tGM:l-cuÍo@uh<ݴgT*bK/MqIsPt隣|RT4 qfj"p~FD܆&_Gd m^}!#,Z3g Um~*rj K|ҳlǧz\ѩ:# <7\s|DU77(#\#_n'O] .*% G. R_l ,f1+M=I|ZRTg8$lD *]i֣/o*O{6LJ=,L3 \ht*\ 1D5+1tTN664B.̠6+ǣ!8O]yQYfpMӺJK7Vu`cڍ9e7G p\?WFz AX"̦Sb:!HN+_ t?j3kZj`!0;fAHAvn(ap!hNs . G}8} `DP[Q+r\nqlΉvx} k* KV)J p@S ‰{I@5;kmȰ!\ǯ]J%}3U+xw}ݐֈ{ ZtS#`:CtYEe2nOtrG;EQLaUb ^.5jS>n4De5+5_:~أc24Au #-U%K7wsYQ}mTsMWz[Vvpr@Ӈh#t?w5Vg>yZ/Bl |y(J t3js{c#fٴ{og` gS^{mk̭kXi5FW\9OO9a-I3`$[2Hv8 ^^wՑ/>+6W.Ni Z޹2]o_v0G`;F8m)ċ5= @ ,D-ĐdI^xcOɴ;a#܊v.`TMmgЉ_!]~`Q]j陜8hoCgXG~fszю U?Qmt1sGAwy1רQ|L?M` ,0_. M-HQT3ә\#%jۀzBԳ:̬F[*m؇u.ٓҖJkTo @6o!dd)=ֽ}l_^5ʋu0 B.+>$^+]|!m>N,ڼ]&@L\cgw!JXS֚Z#a se?D[p*WbQn[PgkA>VyT~ ͩϭή Ke±E? HIKPd\~uh&oqSMkY~{pfSYֱ&U$`?ݼSu n8:~`TMSl7vW euUgImK 8ۂZF *Vgϥǰ'9 䪘~KQ{P:6u(v)7wI>A& !3gQuRvX }ܿngc/ѿ#DE/&bL>oĢ̦tyoi W'5oYP5șgroj@.w_cYԉZx"{ ?n'jx@kPqh!qR,hrQ~k 1"Kkuje蓴afבN̘6wXpAS}Ut_{}ҡ'כ>qծFe L=`|LdAQnZ&\m*i{ڬ7%[gfe/g΢Ud`,V#1!cqK.,?6酤C5eNuC5pCM|qO:ӎ\:7ߒv!RŠT E+shtE]uI6ܣ2V2kUJzMj 6?y{ z^~ׅ>a'+{bR-_|Ƈޤ{ϾF]G'eufg½sƠOΠwE{5fo#q{ĭz.Ovk~Zr作51C̯eXtxQCѧ9ki8ETyA=1qmail-tools-0.1.0/.git/objects/8d/0000755000000000000000000000000011003457321013440 5ustar qmail-tools-0.1.0/.git/objects/8d/d5b6490ae71d43655db70846f4c18047f329810000644000000000000000000000010611003457321020303 0ustar x+)JMU05f040031Q(,M-M-J-H,5г3+I,KbKjWi&wkUqmail-tools-0.1.0/.git/objects/10/0000755000000000000000000000000011003457342013350 5ustar qmail-tools-0.1.0/.git/objects/10/12264edd4e67a443889ac534a5429af2a1f0060000644000000000000000000000021511003457342020333 0ustar x10 﨑ݦi"!- Ť pe(ӡ*$!#kGضwB@ C76uNx+f{Ug6ѧ_l:՘2R"q _K"ttUG_ D<`qmail-tools-0.1.0/.git/objects/8c/0000755000000000000000000000000011003457556013451 5ustar qmail-tools-0.1.0/.git/objects/8c/913a0ff8581051c415463dce6038fedf065d150000644000000000000000000000016711003457556020446 0ustar x10 P#$6ڹb l,N# /,)in냨sN]wWw˱(\IL%ixPdAH&=LTaC}圊xt[ o&qmail-tools-0.1.0/.git/objects/a3/0000755000000000000000000000000011003457556013442 5ustar qmail-tools-0.1.0/.git/objects/a3/c914abc8366e73e8df50642d2bc0c268f4db750000644000000000000000000000017211003457556020663 0ustar x=!PkN`cf݉ Lϻ~6\*eir[ /Lf&& Ezzz%EzU _wI-*-r"=a}(qmail-tools-0.1.0/.git/objects/c1/0000755000000000000000000000000011003457646013442 5ustar qmail-tools-0.1.0/.git/objects/c1/cf36306e1e24be5675cd6fc8cff1476f79aac60000644000000000000000000000030611003457646021035 0ustar xPN0㜯;,Рƕ_&3J$M`Y,[Nu߷vO] j s4!9⣋697bĬ Fk=ws49٢a£_7l6붣d*UO0VQg=c_' Mwh`еܠׇ?g++J-'GQ*6;M([>qmail-tools-0.1.0/.git/objects/db/0000755000000000000000000000000011003713357013516 5ustar qmail-tools-0.1.0/.git/objects/db/a76985e15a399e84af67a75ff40b94789ecf340000644000000000000000000000026111003713357020642 0ustar x= 0E]~A:좛kƇmR +c\ti.nODAo0AeY+EcFhN Xv'uhlBťf F|t2h/Kb͡0nEDH$|$Ķi|H"* Yh53bR&;\qmail-tools-0.1.0/.git/objects/a7/0000755000000000000000000000000011003713364013436 5ustar qmail-tools-0.1.0/.git/objects/a7/2480d4a427a68f618f747bceea53846d886eee0000644000000000000000000000015311003713364020622 0ustar x+)JMU044e040075U((J-H,J--H/JLIM+Kch#B bE+OKLLa*%#Baiji.H}f^Ib^z]R˿JKtH7c_(qmail-tools-0.1.0/.git/objects/fc/0000755000000000000000000000000011003713367013522 5ustar qmail-tools-0.1.0/.git/objects/fc/94d077bf7c953a02f3125c306ccf0eadc593520000644000000000000000000000031511003713367020646 0ustar xMN0 Ykbǖ+ө4M"Ozx z'?X}렽~Lq y^"#\^HLqv!S頤YJɒZ}8Ft~ <}a#1?;rRy}R NrHGN#&S|1\ֈcVV\w((Rs7 mail-tools-0.1.0/.git/objects/83/0000755000000000000000000000000011003714406013357 5ustar qmail-tools-0.1.0/.git/objects/83/b0377728cd8ed60713cc1f7f827290cb102c860000644000000000000000000000021311003714406020351 0ustar x 0]+WMq!օ?pS/%&1Mb룅ٙgd$m40r W)` \qq8 qAtM T}F/ : [dЦ!ƊMKaPХZǑB\5Fnj'8JIpXò3ԋ6uBf|- bv]S oJQ-HaGB%eKܟa P:'iVRCA R/$viV6^FL\k3*c,'=O\.(ߏ#baV hϺ-JE Z)֭w7+oX; &Lz|~9Mb5Szضx><̤YƋZĆ'/Wdvv&[I'㻖L/4| Fqmail-tools-0.1.0/.git/objects/63/0000755000000000000000000000000011003714406013355 5ustar qmail-tools-0.1.0/.git/objects/63/9532ba67a994039962b174c5835416097f6c970000644000000000000000000000177711003714406020042 0ustar xWKoFCPhELq&r)nREꋸy ˢZySߓgWd9,\3r9;'"y3_Ur$9A0_\([a;l "8 )qVmS 5D_nrhfm<4j͌h0BٮRMUP7tE8ȟT׏w?w!6r'BNԵe)|Nhb)FJ9(HR;7eD6sVF `H`k-poyu2d~:+6ȏ yO+89fηV7gIbLfUܰպ5"z:-WV Ԟ,3#9QONǗ{Ĝ]Az:0 RqA{PsdHVVCt5D 1bL8̫띩yǸr.T:,5 !vMKS7 v3;=_G$(Cy)*(ŧ[rLooX8EPde%l|g:tm;CGuWM[8 GP|p%: $Tl0#Dc‚Mއ~af !|1h(zXFH۝L^;㝍 'Ez ,?W 08Gc`K7!V\i?Bܞb,^Z`gdy@(H}+wRPQ܉)8=qrfps >\)M*;Q/}KN*76./xD`qmail-tools-0.1.0/.git/objects/2f/0000755000000000000000000000000011003714406013434 5ustar qmail-tools-0.1.0/.git/objects/2f/08f36df708093be57e5bbcdd4c21ca99d9f9d10000644000000000000000000000004711003714406021030 0ustar xKOR02fHHKOO+,M-M-J-H, qmail-tools-0.1.0/.git/objects/89/0000755000000000000000000000000011003714406013365 5ustar qmail-tools-0.1.0/.git/objects/89/afc61736fe700839f3cc307e48a5c6c59ddcfa0000644000000000000000000000077511003714406020763 0ustar xSk0W_q$cԬu)m$!m? Ad[D)]~{wd& rH|4BH8c*EU.8\>og~\M&@lJ-b•cq)QdHPr*$)BZR$xe!FlIs]s''k* w9?}rA%KGY ɑ֩dPE'db!8*Hj\RGM$ I>=;=VaMWYGwzQ#Z;Bt_?w?YgyEuϐR! כ/k^.+8}Xp붇M 'MaW(j-\ݕ8 6<)I UB"V#=Uj Gu"[˞_,b:Ij*W33hk)bQdqmail-tools-0.1.0/.git/objects/f1/0000755000000000000000000000000011003714414013432 5ustar qmail-tools-0.1.0/.git/objects/f1/057269a0fb03f14ef87b41512e5f4c1316fcc20000644000000000000000000000033511003714414020472 0ustar x+)JMU022b040031QHHKOOgh`^q t`JsK7arwx7+),L(axάWq+FPE9ə% Sv<3ic1P59%9z) sspZ?sG̛?/՚*3t?&n:ǎν hZGqmail-tools-0.1.0/.git/objects/f2/0000755000000000000000000000000011004154746013442 5ustar qmail-tools-0.1.0/.git/objects/f2/f6be94008ad4f2202627e0b25f957288d49e970000644000000000000000000000021411003714414020367 0ustar x+)JMU04`01ԤH@R@$H/._%:XNG?ܱ'5qmail-tools-0.1.0/.git/objects/f2/bbcd4bf5b8418ae1a3851c3875591ebbae0de50000644000000000000000000000030511004154746021064 0ustar xϱj@ ஧B -!H%ݲȶMtڷ:tE!铪)7OE崈W`,pJᅀkvrz?_wv7`m0N t\r'y#R9B6H.E2~$!}CfEʜl0;·:p2)uP%IYe8!8y]ȳŕ>YO&?PճqزV߇~`!).!psMig?зc*R ϡMqmail-tools-0.1.0/.git/objects/4e/0000755000000000000000000000000011003714740013436 5ustar qmail-tools-0.1.0/.git/objects/4e/1a3a6d9ad10515e4a5e9516a1bd3ac05e5c2870000644000000000000000000000025611003714740020630 0ustar x; 0`_q| (T좛mƋmR]]g8ղ7 qx& (:)cf1!@svcNԱKq׆~cT7Hg-\#6Jf>X/lMDR'MBևd)R/07IXC#FȚH]'qmail-tools-0.1.0/.git/objects/b0/0000755000000000000000000000000011003714743013432 5ustar qmail-tools-0.1.0/.git/objects/b0/d8cee7f15e894015d7f11eb1071714777b4f8a0000644000000000000000000000015311003714743020520 0ustar x+)JMU044e040075U((J-H,J--H/JLIM+Kch#B bE+OKLLaʝuUҗYҗװ>=i-qmail-tools-0.1.0/.git/objects/59/0000755000000000000000000000000011003714743013366 5ustar qmail-tools-0.1.0/.git/objects/59/93e66080307f1a6a88eeb9bb413313dccb92b00000644000000000000000000000015511003714743020510 0ustar x+)JMU4e01ԂĢT҂ĔT 7= zFvqj.C3T]"]=K="*`9iorǾ?'qmail-tools-0.1.0/.git/objects/72/0000755000000000000000000000000011003717457013366 5ustar qmail-tools-0.1.0/.git/objects/72/12b079822d4fae825a8c037613fc54b6134ac50000644000000000000000000000031511003714746020344 0ustar xMN0 FYÀLbǖ+ө4M"OzⓥOO~ru^?ta9ΡGȑKXQ&ŸHtPvSd>P@Yʈn_'{_ȏN|JH]t#T3g1^yR|d0$$ pǜ{ǐxLb ͤ<]%bLj_6c*٢;˸!cv-VeJ8 ΁T d[[]f?h󔦘ɋ">Ő%^' Ii`^bm,tQz'pͨO/I@B^+y}RL qmail-tools-0.1.0/.git/objects/e0/0000755000000000000000000000000011003717272013435 5ustar qmail-tools-0.1.0/.git/objects/e0/5a983647b32aa55e1b7e6fe8737e1a88d791f10000644000000000000000000000024611003717272020540 0ustar x+)JMU047`01Ԥ9훬{t9D[77taCV%\Lsx(O!A'#h7Wﳻz|-T-&51pz:[] L̄;86\,MA˹&`K؏ 6MTY/@NF5٩9LQ\5,&QyP<@NcmRW֓jد1C.?2b"V!.xA+UdihcFNr h}EuFܫ>>|nk-v[t'rYpIQuH!܊9/׬f/_'x2xv֡$.vȉv\x6X*4``A1mZׄB"p}UttqI#jZHEN6STPpu%! ~lb@[AQ`"EOhSUbt|[7=qmail-tools-0.1.0/.git/objects/c3/1bb7c656d5a52670270e4691137928a7e33bff0000644000000000000000000000032011003717522020350 0ustar x=N0}у@+luH)=7`}Y}/Lw]'49b6bd4F5A5CL61cƔ)m̳C.kxgA v>=_*\>ʹ Y/ZJNrTKyNۦO>"ܨT]qmail-tools-0.1.0/.git/objects/8b/0000755000000000000000000000000011003717457013447 5ustar qmail-tools-0.1.0/.git/objects/8b/30c31b119bf875e1e398135d3ffb04a2ea855c0000644000000000000000000000033411003717457020573 0ustar x+)JMU022b040031QHHKOOgh`^q t`JsK7arwx7+),L(axάWq+FPE9ə% Sv<3ic1P59%9z) sspZ?sG̛?/՚*3QYŻ!hᴮc+Q=W#qmail-tools-0.1.0/.git/objects/9a/0000755000000000000000000000000011003750074013437 5ustar qmail-tools-0.1.0/.git/objects/9a/c7a754a1bfc146df42f5b5fbc99596d0e133490000644000000000000000000000030311003750074020660 0ustar x1k0F~״ZCl4[,+Gmɑdh}匡x9nxA]O/ϛF&^4GvqT9ᰮ'h,K?7]`rD ָ[! ?&!NC2mI,̷$l0:2$]_ؗo"kJ#qmail-tools-0.1.0/.git/objects/0b/0000755000000000000000000000000011003750077013432 5ustar qmail-tools-0.1.0/.git/objects/0b/d3c7512e7a2b709e98bae4a9d6a34c3e5d518b0000644000000000000000000000015411003750077020730 0ustar x+)JMU044e040075U((J-H,J--H/JLIM+Kch#B bE+OKLLau|y;}i{ 1qmail-tools-0.1.0/.git/objects/01/0000755000000000000000000000000011003750077013351 5ustar qmail-tools-0.1.0/.git/objects/01/451568a49d67f09b489ad26c61cc5073f66a6a0000644000000000000000000000015511003750077020364 0ustar x+)JMU4e01ԂĢT҂ĔT d>v݆f&& Ezzz%EzU _wI-*-r"=a}}2'qmail-tools-0.1.0/.git/objects/a2/0000755000000000000000000000000011003750102013420 5ustar qmail-tools-0.1.0/.git/objects/a2/291934399ee8f9b9793bb021848f59b9cc62830000644000000000000000000000031411003750102020323 0ustar xAN0 EY0I B[`SiD'X}`Ѕqx\ȅs-ň&F)#j$\:mE)9ƙq;([2YkTtK`k$.U70V/A£R?RQJЄ %>WuBCGOp7oZqmail-tools-0.1.0/.git/objects/30/0000755000000000000000000000000011003750106013344 5ustar qmail-tools-0.1.0/.git/objects/30/376da9cab757b1ecbc48678546504bf7aa96280000644000000000000000000000021411003750106020515 0ustar x+)JMU04`01Ԥ;Z[=6zU7(z5߄ʆQqmail-tools-0.1.0/.git/objects/64/0000755000000000000000000000000011003750106013353 5ustar qmail-tools-0.1.0/.git/objects/64/4eda8fa2da7781acdaa93a557502b604778ce80000644000000000000000000000024711003750106020654 0ustar x+)JMU047`01Ԥ|q=.~5\c(W\, }Ʌ^zq4\WuY`Ʌ,~_qmail-tools-0.1.0/.git/objects/7f/0000755000000000000000000000000011004154746013447 5ustar qmail-tools-0.1.0/.git/objects/7f/74685ea204a9b5f1abc0ba5186c16b8689c4730000644000000000000000000000031211004154746020520 0ustar x?o0pVߧxQ"b@:tD]rsjb#',~Cm2Kt!Ҝ,f (:1px%@sCq:n]d#a1\*bPUk~CM$H]ۆY"5*~{R(1?G%?,ok·Tqmail-tools-0.1.0/.git/objects/76/0000755000000000000000000000000011004154751013363 5ustar qmail-tools-0.1.0/.git/objects/76/9a246d95a40ee174d32209ca523d644f2556fc0000644000000000000000000000015311004154751020354 0ustar x+)JMU044e040075U((J-H,J--H/JLIM+Kc]XF^ҼE,+~\}`W`#F2:qmail-tools-0.1.0/.git/objects/d3/0000755000000000000000000000000011004154751013435 5ustar qmail-tools-0.1.0/.git/objects/d3/8f7d4c5d60528d9ad56b9621358c48cd8400aa0000644000000000000000000000015511004154751020523 0ustar x+)JMU4e01ԂĢT҂ĔTY*S=,y*6_5쏡Baiji.H}f^Ib^z]R˿JKtH7c_3&qmail-tools-0.1.0/.git/objects/df/0000755000000000000000000000000011004154753013522 5ustar qmail-tools-0.1.0/.git/objects/df/82808649647c90a08e98fae1ae1fec446ce6d50000644000000000000000000000031611004154753020704 0ustar xAn! E޷iUTumb3)aiԋ/K_O~rn > ab9˞6RB;k&Qu6D bL;X4Ep&"/ mE!Mw0VǤ͎³GI)G*$.#z,H|| _; F{,u"mxRU Zqmail-tools-0.1.0/.git/objects/88/0000755000000000000000000000000011004154757013374 5ustar qmail-tools-0.1.0/.git/objects/88/d662973d43117d4369afc387857e9feb13415e0000644000000000000000000000021411004154757020334 0ustar x+)JMU04`01ԤH@R@$H/._%:XNG?ܱ$3qmail-tools-0.1.0/.git/objects/88/747929e8ac32eb3ee002251d96e932e8f964890000644000000000000000000000024511004154757020346 0ustar x+)JMU047`01ԤH@R@$H/._%:XNG?ܱ&= jkmm\2dg^۲BGqmail-tools-0.1.0/.git/objects/ad/0000755000000000000000000000000011004154757013521 5ustar qmail-tools-0.1.0/.git/objects/ad/049cf9adffdb4229fc33fd87152279035ac5d10000644000000000000000000000026511004154757020745 0ustar xAj!E Z!dmP匐ngGB0=}ۀ%"Xb\(sin$c5 Uٜns1T\b Cd٢V7[%IJ~[Wŧ9㾳9.].aW;cߐgHѓҴ4VJ]/jMqmail-tools-0.1.0/.git/objects/d8/0000755000000000000000000000000011004154757013450 5ustar qmail-tools-0.1.0/.git/objects/d8/74c297d16af1f56c1f61c1ddca1e9d0d4e87e90000644000000000000000000000027111004154757021034 0ustar xN1 DBt/q+v7}"$$Jb4O3y_[L鮛*-J#%zBYy$Ty]ӭ?q,rk%$ą}LS N{Ԇ|bEng)bdC.9CLDgV٠U3D/Q.qmail-tools-0.1.0/.git/objects/e5/0000755000000000000000000000000011004154757013446 5ustar qmail-tools-0.1.0/.git/objects/e5/0a7cf8ac5e77118fa5a43d48ec92ea6ec57a3b0000644000000000000000000000024511004154757021105 0ustar x+)JMU047`01Ԥ| 1208901556 +0000 branch: Created from HEAD c1cf36306e1e24be5675cd6fc8cff1476f79aac6 fc94d077bf7c953a02f3125c306ccf0eadc59352 Gerrit Pape 1208981239 +0000 commit (amend): add prepare-upgrade/: helpers to help upgrading from non-free, unofficial fc94d077bf7c953a02f3125c306ccf0eadc59352 3d6c23532541e578078890a23bba98c87726e65f Gerrit Pape 1208981786 +0000 commit: initial import debian subdirectory 3d6c23532541e578078890a23bba98c87726e65f 60901099c31805da6a13f099aee60a1c065dc774 Gerrit Pape 1208981994 +0000 rebase -i (finish): refs/heads/debian-sid onto 1012264) 60901099c31805da6a13f099aee60a1c065dc774 2a5fa3dee0f0dd0674d28939fb60180a6676f171 Gerrit Pape 1208983239 +0000 commit: queue-repair.8: new; man page for queue-repair 2a5fa3dee0f0dd0674d28939fb60180a6676f171 c31bb7c656d5a52670270e4691137928a7e33bff Gerrit Pape 1208983378 +0000 commit: debian/rules: build package in target binary-indep:; install c31bb7c656d5a52670270e4691137928a7e33bff d4afcb956f4d2773b35ec5d3c41d4578a3fd7056 Gerrit Pape 1208995910 +0000 rebase -i (finish): refs/heads/debian-sid onto 1012264) d4afcb956f4d2773b35ec5d3c41d4578a3fd7056 02f108371802b08ed33f9079a38146ca9f74db1d Gerrit Pape 1209063919 +0000 rebase -i (finish): refs/heads/debian-sid onto 1012264) qmail-tools-0.1.0/.git/logs/refs/remotes/0000755000000000000000000000000011005133534015054 5ustar qmail-tools-0.1.0/.git/logs/refs/remotes/origin/0000755000000000000000000000000011005133655016347 5ustar qmail-tools-0.1.0/.git/logs/refs/remotes/origin/debian-sid0000644000000000000000000000022111005133643020261 0ustar 0000000000000000000000000000000000000000 02f108371802b08ed33f9079a38146ca9f74db1d Gerrit Pape 1209317283 +0000 update by push qmail-tools-0.1.0/.git/logs/HEAD0000644000000000000000000001072611004154757013102 0ustar 0000000000000000000000000000000000000000 1012264edd4e67a443889ac534a5429af2a1f006 Gerrit Pape 1208901346 +0000 commit (initial): add queue-repair-0.9.0.tar.gz. 1012264edd4e67a443889ac534a5429af2a1f006 c1cf36306e1e24be5675cd6fc8cff1476f79aac6 Gerrit Pape 1208901542 +0000 commit: add prepare-upgrade/: helpers to help upgrading from non-free, unofficial c1cf36306e1e24be5675cd6fc8cff1476f79aac6 c1cf36306e1e24be5675cd6fc8cff1476f79aac6 Gerrit Pape 1208901553 +0000 checkout: moving from master to release c1cf36306e1e24be5675cd6fc8cff1476f79aac6 c1cf36306e1e24be5675cd6fc8cff1476f79aac6 Gerrit Pape 1208901556 +0000 checkout: moving from release to debian-sid c1cf36306e1e24be5675cd6fc8cff1476f79aac6 fc94d077bf7c953a02f3125c306ccf0eadc59352 Gerrit Pape 1208981239 +0000 commit (amend): add prepare-upgrade/: helpers to help upgrading from non-free, unofficial fc94d077bf7c953a02f3125c306ccf0eadc59352 3d6c23532541e578078890a23bba98c87726e65f Gerrit Pape 1208981786 +0000 commit: initial import debian subdirectory 3d6c23532541e578078890a23bba98c87726e65f 1012264edd4e67a443889ac534a5429af2a1f006 Gerrit Pape 1208981953 +0000 checkout: moving from debian-sid to 1012264edd4e67a443889ac534a5429af2a1f006 1012264edd4e67a443889ac534a5429af2a1f006 fc94d077bf7c953a02f3125c306ccf0eadc59352 Gerrit Pape 1208981953 +0000 rebase -i (edit): updating HEAD fc94d077bf7c953a02f3125c306ccf0eadc59352 7212b079822d4fae825a8c037613fc54b6134ac5 Gerrit Pape 1208981990 +0000 commit (amend): add prepare-upgrade/: helpers to help upgrading from non-free, unofficial 7212b079822d4fae825a8c037613fc54b6134ac5 60901099c31805da6a13f099aee60a1c065dc774 Gerrit Pape 1208981994 +0000 commit: initial import debian subdirectory 60901099c31805da6a13f099aee60a1c065dc774 2a5fa3dee0f0dd0674d28939fb60180a6676f171 Gerrit Pape 1208983239 +0000 commit: queue-repair.8: new; man page for queue-repair 2a5fa3dee0f0dd0674d28939fb60180a6676f171 c31bb7c656d5a52670270e4691137928a7e33bff Gerrit Pape 1208983378 +0000 commit: debian/rules: build package in target binary-indep:; install c31bb7c656d5a52670270e4691137928a7e33bff 1012264edd4e67a443889ac534a5429af2a1f006 Gerrit Pape 1208995847 +0000 checkout: moving from debian-sid to 1012264edd4e67a443889ac534a5429af2a1f006 1012264edd4e67a443889ac534a5429af2a1f006 7212b079822d4fae825a8c037613fc54b6134ac5 Gerrit Pape 1208995847 +0000 rebase -i (edit): updating HEAD 7212b079822d4fae825a8c037613fc54b6134ac5 a2291934399ee8f9b9793bb021848f59b9cc6283 Gerrit Pape 1208995906 +0000 commit (amend): add prepare-upgrade/: helpers to help upgrading from non-free, unofficial a2291934399ee8f9b9793bb021848f59b9cc6283 f8d34621f2a59689237235dc34f5e5975b279b7b Gerrit Pape 1208995910 +0000 commit: initial import debian subdirectory f8d34621f2a59689237235dc34f5e5975b279b7b 4ddd4b826703c30d4dd24cb509d582495059eef8 Gerrit Pape 1208995910 +0000 commit: queue-repair.8: new; man page for queue-repair 4ddd4b826703c30d4dd24cb509d582495059eef8 d4afcb956f4d2773b35ec5d3c41d4578a3fd7056 Gerrit Pape 1208995910 +0000 commit: debian/rules: build package in target binary-indep:; install d4afcb956f4d2773b35ec5d3c41d4578a3fd7056 1012264edd4e67a443889ac534a5429af2a1f006 Gerrit Pape 1209063900 +0000 checkout: moving from debian-sid to 1012264edd4e67a443889ac534a5429af2a1f006 1012264edd4e67a443889ac534a5429af2a1f006 a2291934399ee8f9b9793bb021848f59b9cc6283 Gerrit Pape 1209063900 +0000 rebase -i (edit): updating HEAD a2291934399ee8f9b9793bb021848f59b9cc6283 df82808649647c90a08e98fae1ae1fec446ce6d5 Gerrit Pape 1209063915 +0000 commit (amend): add prepare-upgrade/: helpers to help upgrading from non-free, unofficial df82808649647c90a08e98fae1ae1fec446ce6d5 ad049cf9adffdb4229fc33fd87152279035ac5d1 Gerrit Pape 1209063919 +0000 commit: initial import debian subdirectory ad049cf9adffdb4229fc33fd87152279035ac5d1 d874c297d16af1f56c1f61c1ddca1e9d0d4e87e9 Gerrit Pape 1209063919 +0000 commit: queue-repair.8: new; man page for queue-repair d874c297d16af1f56c1f61c1ddca1e9d0d4e87e9 02f108371802b08ed33f9079a38146ca9f74db1d Gerrit Pape 1209063919 +0000 commit: debian/rules: build package in target binary-indep:; install qmail-tools-0.1.0/.git/index0000644000000000000000000000177111005133604012531 0ustar DIRC HH 7w(͎r,debian/changelogHH ?g4駼sI4;debian/controlHH .~V =DD1]debian/copyrightHH  c2gbtŃT ldebian/implicitHH /m ;~[L!ʙdebian/qmail-tools.docsHH - #{kl RK#` debian/rulesHH KAᣅ8uY ,prepare-upgrade/prepare-upgrade-from-nonfreeHHth^Qks/prepare-upgrade/prepare-upgrade-from-unofficialH^B&6YgY?᎓queue-repair-0.9.0.tar.gzHH  C&=}}kdA/ V~vw~vv|w=<=l}'ө(O7uku/ώ~1vvwv^<{ָv?_ƽX:U8QW;xއE@A8I(i*9STz|'I&{lDqH![pEY-%Fy0qa*A4^x m&u8ZiGjZO?{-O;<};89{[q?{Vg^|9,Xijo!?F'8GA/H7,h0P,q< %='1 8||}2骋 zt^:>y SТh$0EI8RҸ#@f/ɏA26 $bT@E$L#Sh)4%`Ψp1~jg7M@=6^&3?Tϴ|xk4?d#;ׁ/0f+CMC;+ut`lK&j2!dAP/盖v(l04#G225B:kZKtcriHiZ(phH)$b‰̊ D$2CBđg~$(Qw} H노 I}$ aܾPBfz+R ! ȾD7E-8 ɻyWҌIgihj w*^ɩ@tE1Rȫ}2[bg&ZVs zC` K@a**3 EY᠎KV ijv.,Rku~ &e4rȂ-֒.E]w2CxB].|\1Roe*& Oh^# gȸZEmiٗ/ĀXc 1Vl !,41A&D[h]Y2@018"`E)Bi_-MI6f4Ȉw"P \z\'qTnf7z zB9ŽHL^ _hgPCJq jDŽg ̰ZF‰r$9H ֟b. ``}Qce&!/ :3 @PfMaCv>9f}ロp}#UВ\Za\} {mc1z{}xrpBB9;WXu|#ώoG"'ϩUv$b ؏Ϣ3efR!~ԩQ;xEkqmGO݋>f-p]|>g==G4L#h2;gpV 0>tHaXn+dv.@V `cweQ6OPwiżfϐdwAL]ہvP:&c5dYzT"xrX芎U\&I$:!U,yeYCyݰr%YT!(eٻChG9tg=ݞҀdH)YDUa4ό5(*ȍIq E9@;ic WrG{L#mr87 ڣ|$<GH:`Ql2/0~[ʮG:AYH& 2P'`L?O1%1k_ ^s3`z* ɃĄLJQz9[4F D Qw 9a$a)32F!n桒OpQQB(@`P0 EAZ9iO Kx`?D ۡ',(Fڴ\,0bF/ġ`7VapS҉%ڃ/>؂NuY@#n9Y@.+2zfa)Xn&vIɉ5JcAG;އ0P@/D ' ;C%8hkYX }g8o 48,EIpeW=Ѯrg16>RI!Qץ1霥Wb:/@oR=c$╍ )V0LP(p8 k #&2q23 >yZ/`ĸ3]g1{jЉ:FNUznqtx,'+4!/$0%@ s fpJ׺0a^S d#'JEʾ)Hq'}u/2LO!i` |~Zh`jxZ+t^B{ !٘g6*9g)jwa$npSE59QXpF81+v5E@.2%HxP=4$;Py7R$6xlkӡx'!fCy{c]Ug[y"8!aAJ7:ڨ rH!p L"tzp.v 3 B⎍./Nac4ӟgr57qSƬ䟊ab_ڇj2(=KLٶ҇z)!l;LKorKuu1uAϥA6͕ gXZˉp3N2 pG  .Ҝϣ{4:ic*x0HRG--2MSuM2z`JE?k8KڳN(BBɓۃw|F0wHt< hv+qŅ4qG6cZ[vN d*5(\N. K䝶yg``F5ޑz`ZZQ oq)URH=0ӊ@Gˑܭ<1:tZ 2;e+a՚^ uP͈e @M()!@?_{uneAK&lPv9ɹ\A8@J"kԳg@.Dk $:R% K{ӣ5oQ`mI06&; DZߗnaSr`q3.{E+HË>X&WnQCI1D6hTg6 Ws tQAf)e4KhPp"1XTo)lr@| W+JT)@Rr1ͣ ;S@D&3屓D''0f5ͻPj e;]Br;mI1VG8cӷCdm,h.0ZܗK. 9XqU;^:\f Ӏ7xlL\{S!oMLe6 {_L*GP\#x aºG%p;~1vMXbi{U.,u@3{08?h?듁:99å;C?C0Հyc4@B r,/a.>/.@''tpRGH|psrvʺe\2y |0N@oېκ{?ap\w љz ? {r9w>C| %:>|vp,RLUGCփ>a#" @!,'N P ey]v>v/N.`CE_EtxtD [`#4Ϗ<՛ g@BIf0EK5tZy7/TƒS";O>#<>ZQ)UD3tӍhׁHRғ-ppA *0¿'X5'hG9>TXWlca͏qdZ_Yw85I1 >Vn9ɷJX#ݩzzͱ'* pƘvTAƼ/d 4f#na//jh /FYZiu2BH3`)p61sZh8}Lg>yx$n&XRaD_9B$`B|\P{ႳbBqj(GsG:&w~fUQ##դ@Eb~mN\=@B8;4"n y_tpϥrC X8Hגv rʦL4nrs|o`{ C%ٔvUd#$v5&8ט6  ιZ'IGdo |22 XԽqu=/HdT' JnmsV"KetN<9".f}fP̾*lG->x#hGk;{"X@y ƨ\Qi^Hk`t` 6?$*< \rIjWSkIc]CxAmк6"Fyz]_Jlx!X{߀aK\Ul4*Ug35Y[3ڷ$`xՕՕ:PJHgwϪu9l3;+dۥtFZL?g32<5[#6ضf(9P'~~hy74jףK̃xcֽpыLX~| BxYn}"u?~ǤGgt7ǫQ^ߨUDgJ6/q_)9XcR=Zn+]NO{팔Wm$isIxm|0bL5=U0N6چ]C'Nz2k$sk w-ͽv˽Iׯ^RE<փAϷ VCJc|^&V Oo'}i,\-0$"GQ7ߗ;yh&٩.tJcF>{D4Ķ !*k2Ļ$/9 i;,(: rC׵rm2^}Stk O?GO{oo.}WxBTn1B/N0zލ*^'3PNj198@﬽RWag_U[=.#$NyP}s+vNS տ=!ZIƲy|_59WG4ϨE{^)x H\@Gp^avsg0-<8[}'zc;f 9}$x}3QpnnYY[$?7 P_yw|r%Gqs ^Lg΀ ._J@4x;< . SQ 5L~5"W|ǟ$K!mKcBA8r6%Re_[@lAi_ !_;b~y5C;w#V3a?#++gp~.o;a 0vp6C>dK͵tZ!2u;ڱ;EE<FY`Lu=f Tb v169`=H8)@"rL oFfE*47qމosg|;S$FZ!yg wvw 5;:ѿu*zmVoo 6伳|~0⥜hXOFx0㧻(^-8om:XŃ[MQ+eD%pTއ@;/js~,WIӠ tg`4> (/ɠ.E`3"+pXh~UDj,(2[*"+gQ>|y96aH\%᭟&EtG)ؑ$IlKGU;Cy-mǁ1gagHiKOW`q~Vv@i(C4L!8v6 >a&mI|ܝ K7ȍ(Mp~ū̧U;EQ̇.}-q]Ń0&> ^gnP*)ɦ#8eH kvVPt.'[r8Khuq5|v>P ͱΓND0Ow>/k)h12&u )36 ^-.]őy@mDbv:͔nLRjK*2S: Gp*㋱ZU2eƭðW]0œ[Aٯ&jڄ}1䴡ax9ׄ&7Diesv~*?\dc_zW&,ɢ?52'|jV2No@RS @kU]-@vy4\8;\\SI.`k4YAAQV~|#ЬcoGً6:fS*~ w'{S0h;kE] , KHX}QZ;z>RW̬A |S`>7_b/n9 '",ȵ#1x$0X|R)LJd::H2\6_ꉓZk,86:+tR5``S=tfK_N+rR$urG2Fg0YLcw z;S4EkmA_Qrm(׉O:vfc䖍r)Zr_B+WZ|Akɲ毲DO\ qxl%K.VsX딑eɊRoV2/݊<rݛ8D^7"ZIH}^@E"jN7$Ω4nU(*?.Fk^пGϬn_[PnKns_ϯWlaUÊru^~HYOXǤLְkd}`lp)a;Զ"ʉsJipI,46nrc'Ԋ+@]pNluu]i6UNi9eTmWP򁡢̶Jt8v {v Ni!%v'Hi e,;~/X*Ķ_Z@*-7vkoIUut*#Lܠ.FCQ#NfDxrثTcVN|B`6~*3,8 ҨH5T6MJhy:Pv6LVuFn]l M%sﺅnbU/=&(g&Wm頔p}b|s54[jCg l^_w@,M%!>xVViCY*n* M_Yg= FqG 4.d ܘUllOy(_\H7UaLޣ.e}A/ooNB5b4~EgLۻTH|kJC 1bȭIp2 DS;J-C]V}!V-S|s,_<['f̚Vqwq6oNl%p/+vŷįPSZU O*n5~fψ:.]N%0rEMNvefdc̴j+Pյs}w׎U!IVt;kt'%P\ ZR>ʽLk':ͧ$nŢu47dg[mOx1 L (^fZx3CЛͨilC~1ۤ@nzllG3 Z4sE`w 8m}p)LReRtya[Ф\hf)uƭ{p5ҭ w5W7U3WPJ8"xb46ٿ>;O%$8}ptgo0xocM ?ZC 7ijnzG LX&LA jo1)H%$gs  S!yKBb(ZUd4ݝ.r߱f 7Mu1ZZCxv&!PWJ}ܚh,XEQHO ?0sSgHhWZIgyx7 CtÞpym}@:|Pw46kV~b"_;5U~#? OL'EIʉ.ɢbidI}mLg30Xbl-(V*}J- }!Fv%Pܩ^nYn$(HRï(?Qϡ.X"LJ3?(ymfF\#W/JEΖli;h;lg[Z.][彙TfA{az/,fX LOn̏Ns?u;i a o~&CQ;?+'G|M sEy};(Az)4)璾n^+%osM^ YP%LuB{DS;2`,ogwY-)E鯀V ֜Wb[J[a;6؊QFUCλ@S%Uz9 n^C\H~m/_{/9XFxrzWt c>;Ů:wwU~x}A u-?t>f{pH]MsȵKZ,qM̅y~U?ҾHށBV,&]-Dh]'|"ݬMxqWtvK,k.;մy%Tw7~>pcFHK'yƥⱻϭI- G0-70~Wt2~_4baї\)1]Gb[@1a"PuK]NpH4cmkBo$] msƏ@ ~ w ; chBrtӚɬ*C}\el~+eKS.;pƓ*5|7Z,V;w D19BFL4WK;X_9 ෫+4WW[b_yxyxyxyxyxyxyxyxyxy?qmail-tools-0.1.0/prepare-upgrade/0000755000000000000000000000000011004154734013721 5ustar qmail-tools-0.1.0/prepare-upgrade/prepare-upgrade-from-nonfree0000755000000000000000000000063611004154740021327 0ustar #!/bin/sh case "$1" in --uids-gids) cat >&2 <<-\EOT Upgrading qmail uids and gids from the package in Debian/non-free is not yet supported. EOT exit 1 ;; --run) cat >&2 <<-\EOT Upgrading qmail MTA from the package in Debian/non-free is not yet supported. EOT exit 1 ;; *) cat >&2 <<-\EOT Upgrading qmail from the package in Debian/non-free is not yet supported. EOT exit 1 ;; esac qmail-tools-0.1.0/prepare-upgrade/prepare-upgrade-from-unofficial0000755000000000000000000000065511004154740022013 0ustar #!/bin/sh case "$1" in --uids-gids) cat >&2 <<-\EOT Upgrading qmail uids and gids from the unofficial smarden.org packages is not yet supported. EOT exit 1 ;; --run) cat >&2 <<-\EOT Upgrading qmail MTA from the unofficial smarden.org packages is not yet supported. EOT exit 1 ;; *) cat >&2 <<-\EOT Upgrading qmail from the unofficial smarden.org packages is not yet supported. EOT exit 1 ;; esac qmail-tools-0.1.0/debian/0000755000000000000000000000000011005133611012050 5ustar qmail-tools-0.1.0/debian/changelog0000644000000000000000000000021511004154757013735 0ustar qmail-tools (0.1.0) unstable; urgency=low * initial Debian package. -- Gerrit Pape Tue, 22 Apr 2008 22:00:41 +0000 qmail-tools-0.1.0/debian/control0000644000000000000000000000102211004154757013463 0ustar Source: qmail-tools Section: net Priority: optional Maintainer: Gerrit Pape Standards-Version: 3.7.3.0 Package: qmail-tools Architecture: all Depends: python Recommends: qmail Description: collection of tools for qmail This package contains tools that are useful when running the Debian qmail packages, such as queue-repair, which deals with the qmail queue, and tools that help upgrading from previously existing qmail Debian packages, those in Debian/non-free, and the unofficial ones from smarden.org. qmail-tools-0.1.0/debian/copyright0000644000000000000000000000137711004154757014030 0ustar Thiss package was created by Gerrit Pape on Tue, 22 Apr 2008 22:00:41 +0000. It includes software downloaded from http://pyropus.ca/software/queue-repair/ queue-repair Upstream Author: Charles Cazabon queue-repair Copyright: Copyright (C) 2001 Charles Cazabon This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as published by the Free Software Foundation. A copy of this license should be included in the file COPYING. On Debian GNU/Linux systems, the complete text of the GNU General Public License can be found in ``/usr/share/common-licenses/GPL-2''. The rest of the package is in the public domain. qmail-tools-0.1.0/debian/TODO0000644000000000000000000000064511003777104012556 0ustar # queue-repair ; echo $? queue_repair.py v. 0.9.0 Copyright (C) 2001 Charles Cazabon Licensed under the GNU General Public License version 2 running in test-only mode finding qmail UIDs/GIDs... qmaill : UID 64015 qmaild : UID 64011 alias : UID 64010 qmailr : UID 64013 qmails : UID 64012 qmailp : UID 64016 qmailq : UID 64014 qmail : GID 64010 no gid for nofiles 1 qmail-tools-0.1.0/debian/implicit0000644000000000000000000000672711004154757013636 0ustar # $Id: a09db2e42c8b6a2d820754d741558e5894944746 $ .PHONY: deb-checkdir deb-checkuid deb-checkdir: @test -e debian/control || sh -cx '! : wrong directory' deb-checkuid: @test "`id -u`" -eq 0 || sh -cx '! : need root privileges' %.deb: %.deb-docs %.deb-DEBIAN @rm -f $*.deb $*.deb-checkdir $*.deb-docs $*.deb-docs-base \ $*.deb-docs-docs $*.deb-docs-examples $*.deb-DEBIAN \ $*.deb-DEBIAN-dir $*.deb-DEBIAN-scripts $*.deb-DEBIAN-md5sums %.udeb: %.deb-DEBIAN @rm -f $*.deb $*.deb-checkdir $*.deb-DEBIAN $*.deb-DEBIAN-dir \ $*.deb-DEBIAN-scripts $*.deb-DEBIAN-md5sums %.deb-checkdir: install @test -d debian/$* || sh -cx '! : directory debian/$* missing' @test "`id -u`" -eq 0 || sh -cx '! : need root privileges' %.deb-docs-base: install : implicit @rm -f debian/$*/usr/share/doc/$*/* || : @install -d -m0755 debian/$*/usr/share/doc/$* : debian/$*/usr/share/doc/$*/ @sh -cx 'install -m0644 debian/copyright debian/$*/usr/share/doc/$*/' @sh -cx 'install -m0644 debian/changelog \ debian/$*/usr/share/doc/$*/changelog.Debian' @test ! -r changelog || \ sh -cx 'install -m0644 changelog debian/$*/usr/share/doc/$*/' @test -r debian/$*/usr/share/doc/$*/changelog || \ sh -cx 'mv debian/$*/usr/share/doc/$*/changelog.Debian \ debian/$*/usr/share/doc/$*/changelog' @test -s debian/$*/usr/share/doc/$*/changelog || \ sh -cx 'rm -f debian/$*/usr/share/doc/$*/changelog' @gzip -9 debian/$*/usr/share/doc/$*/changelog* %.deb-docs-docs: %.deb-docs-base @for i in `cat debian/$*.docs 2>/dev/null || :`; do \ if test -d $$i; then \ sh -cx "install -d -m0755 debian/$*/usr/share/doc/$*/$${i##*/}" && \ for j in $$i/*; do \ sh -cx "install -m0644 $$j \ debian/$*/usr/share/doc/$*/$${i##*/}/" || exit 1; \ done || exit 1; \ continue; \ fi; \ sh -cx "install -m0644 $$i debian/$*/usr/share/doc/$*/" || exit 1; \ done @test ! -r debian/$*.README.Debian || \ sh -cx 'install -m0644 debian/$*.README.Debian \ debian/$*/usr/share/doc/$*/README.Debian' @if test -r debian/$*.NEWS.Debian; then \ sh -cx 'install -m0644 debian/$*.NEWS.Debian \ debian/$*/usr/share/doc/$*/NEWS.Debian && \ gzip -9 debian/$*/usr/share/doc/$*/NEWS.Debian'; \ fi %.deb-docs-examples: %.deb-docs-docs @rm -rf debian/$*/usr/share/doc/$*/examples : debian/$*/usr/share/doc/$*/examples/ @test ! -r debian/$*.examples || \ install -d -m0755 debian/$*/usr/share/doc/$*/examples @for i in `cat debian/$*.examples 2>/dev/null || :`; do \ sh -cx "install -m0644 $$i debian/$*/usr/share/doc/$*/examples/" \ || exit 1; \ done %.deb-docs: %.deb-checkdir %.deb-docs-base %.deb-docs-docs %.deb-docs-examples : debian/$*/usr/share/doc/$*/ ok %.deb-DEBIAN-base: install @rm -rf debian/$*/DEBIAN : debian/$*/DEBIAN/ @install -d -m0755 debian/$*/DEBIAN @for i in conffiles shlibs templates; do \ test ! -r debian/$*.$$i || \ sh -cx "install -m0644 debian/$*.$$i debian/$*/DEBIAN/$$i" \ || exit 1; \ done %.deb-DEBIAN-scripts: %.deb-DEBIAN-base @for i in preinst prerm postinst postrm config; do \ test ! -r debian/$*.$$i || \ sh -cx "install -m0755 debian/$*.$$i debian/$*/DEBIAN/$$i" \ || exit 1; \ done %.deb-DEBIAN-md5sums: %.deb-DEBIAN-base %.deb-docs : debian/$*/DEBIAN/md5sums @rm -f debian/$*/DEBIAN/md5sums @cd debian/$* && find * -path 'DEBIAN' -prune -o \ -type f -exec md5sum {} >>DEBIAN/md5sums \; %.deb-DEBIAN: %.deb-checkdir %.deb-DEBIAN-base %.deb-DEBIAN-scripts \ %.deb-DEBIAN-md5sums : debian/$*/DEBIAN/ ok qmail-tools-0.1.0/debian/qmail-tools.docs0000644000000000000000000000002711004154757015177 0ustar changelog.queue-repair qmail-tools-0.1.0/debian/rules0000755000000000000000000000234311004154757013147 0ustar #!/usr/bin/make -f STRIP =strip ifneq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS))) STRIP =: nostrip endif DIR=$(shell pwd)/debian/qmail-tools build: deb-checkdir build-stamp build-stamp: tar xzpf queue-repair-0.9.0.tar.gz touch build-stamp clean: deb-checkdir deb-checkuid rm -rf queue-repair-0.9.0 rm -f build-stamp rm -rf '$(DIR)' rm -f debian/files changelog changelog.queue-repair install: deb-checkdir deb-checkuid build-stamp rm -rf '$(DIR)' install -d -m0755 '$(DIR)'/usr/sbin # queue-repair sed -e 's}/var/qmail}/var/lib/qmail}g' '$(DIR)'/usr/sbin/queue-repair chmod 755 '$(DIR)'/usr/sbin/queue-repair ln -s queue-repair-0.9.0/CHANGELOG changelog.queue-repair install -d -m0755 '$(DIR)'/usr/share/man/man8 install -m0644 queue-repair.8 '$(DIR)'/usr/share/man/man8/ gzip -9 '$(DIR)'/usr/share/man/man8/queue-repair.8 # upgrade helpers install -d -m0755 '$(DIR)'/usr/lib/qmail install -m0755 prepare-upgrade/* '$(DIR)'/usr/lib/qmail/ binary-indep: install qmail-tools.deb dpkg-gencontrol -isp -pqmail-tools -P'$(DIR)' dpkg -b '$(DIR)' .. binary-arch: binary: binary-indep binary-arch .PHONY: build clean install binary-indep binary-arch binary include debian/implicit qmail-tools-0.1.0/queue-repair.80000644000000000000000000000550311004154757013343 0ustar .TH queue-repair 8 .SH NAME queue-repair \- deal with the qmail queue directory structure .SH SYNOPSIS .B queue-repair [ \-htrcbn ] [ \-n .IR split ] [ .I conf-qmail ] .SH DESCRIPTION .B queue-repair deals with the qmail queue structure; it can create a new queue, move and properly rename a queue, dynamically change the conf-split value, convert big-todo queues to non-big-todo and vice versa, and repair a corrupted queue. .I conf-qmail defaults to /var/lib/qmail/ on Debian. .SH OPTIONS .TP .B \-h|--help Display usage information and built-in defaults, then exit. .TP .B \-t|--test Run in test-only mode. .B queue-repair will attempt to report all problems that it finds, without correcting them. This is the default. .TP .B \-r|--repair Run in repair mode. .B queue-repair will attempt to correct all problems that it finds, except if the basic queue directories (queue, queue/mess, queue/info, etc) are not found. .TP .B \-c|--create Run in create-and-repair mode. .B queue-repair will attempt to correct all problems that it finds, including creation of a new queue structure from scratch. .TP .B \-s|--split \fIsplit Specify .I split as the value of conf-split. This is the number of split subdirectories for those queue directories which are hashed. The default for qmail is 23. Appropriate values depend on the volume of mail handled, OS filesystem efficiency, and other factors, but this should always be a prime number. If you do not specify conf-split, .B queue-repair will attempt to determine the current value from the existing queue. This option can be used, however, to change the conf-split value of an existing queue (qmail will still have to be recompiled with the new value). When creating a new queue, this option must always be specified. .TP .B \-b|--bigtoto Use big-todo. .B queue-repair should be able to automatically determine if you're using qmail patched with the big-todo patch. This option can be used, however, to convert a non-big-todo queue to a big-todo queue (qmail will still have to be recompiled with the big-todo patch). If neither this option nor --no-bigtodo is used, .B queue-repair will attempt to determine this automatically. When creating a new queue, either this option or --no-bigtodo must always be specified. .TP .B \-n|--no-bigtodo Do not use big-todo. .B queue-repair should be able to automatically determine if you're using qmail patched with the big-todo patch. This option can be used, however, to convert a big-todo queue to a non big-todo queue (qmail will still have to be recompiled without the big-todo patch). If neither this option nor --bigtodo is used, .B queue-repair will attempt to determine this automatically. When creating a new queue, either this option or --bigtodo must always be specified. .TP .B \--i-want-a-broken-conf-split Force the use of a non-prime value for conf-split. .SH SEE ALSO qmail(7)