diff options
Diffstat (limited to 'img/dist/IM/dot.im')
| -rw-r--r-- | img/dist/IM/dot.im/Config | 12 | ||||
| -rw-r--r-- | img/dist/IM/dot.im/get.sbr | 4 | ||||
| -rw-r--r-- | img/dist/IM/dot.im/getchk.sbr | 2 | ||||
| -rw-r--r-- | img/dist/IM/dot.im/getchk.sbr.postpet | 2 | ||||
| -rw-r--r-- | img/dist/IM/dot.im/scan.sbr | 2 | ||||
| -rw-r--r-- | img/dist/IM/dot.im/scan.sbr.sample1 | 2 | ||||
| -rw-r--r-- | img/dist/IM/dot.im/scan.sbr.sample2 | 2 |
7 files changed, 16 insertions, 10 deletions
diff --git a/img/dist/IM/dot.im/Config b/img/dist/IM/dot.im/Config index 3ab05031..86ac62c6 100644 --- a/img/dist/IM/dot.im/Config +++ b/img/dist/IM/dot.im/Config @@ -108,6 +108,7 @@ ToDomain=_domain_when_domain_part_is_omitted_ #Imget.Src=local:${HOME}/Maildir # in case of qmail #UseCL=no # Use value of Content-Length header #NoSync=no # Do not need fsync(2) on writing file +#FsyncNumber=118 # system call number of fsync #Imget.Src=pop #PopAccount=/APOP@localhost # account info for POP access @@ -124,14 +125,19 @@ ToDomain=_domain_when_domain_part_is_omitted_ #HttpProxy=proxy-server:8080 # proxy server for HTTP access #NoProxy=http://.*my.domain/ # URL regex not to use Proxy server #UsePwAgent=yes # use password agent -#PwAgentPort=6543 # Port to connect pwagent with TCP/IP - # (Insecure for multi-user system!) - # 0 to use UNIX domain socket (more secure) +#PwAgentPort=0 # Port to connect pwagent with TCP/IP + # 0 to use UNIX domain socket + # NOTE: non-0 (e.g. 6543) is insecure + # on multi-user system +#PwAgentTmpDir=pwagtmp # temporary directory (relative to ~/.im/) # be careful on security if you wish to use PwFiles! #UsePwFiles=yes # use password files #PwFiles=password # password files (relative to ~/.im/) +#NamazuV2=yes # use Namazu version 2 (1.9.x or late) +#NamazuLockDir=nmzlock # lock directory (relative to ~/.im/) + ## imput specific #FccDir=$MailDir # directory for FCC folders #QueueDir=queue # directory for to store messages to be sent diff --git a/img/dist/IM/dot.im/get.sbr b/img/dist/IM/dot.im/get.sbr index 15a3194a..3943631e 100644 --- a/img/dist/IM/dot.im/get.sbr +++ b/img/dist/IM/dot.im/get.sbr @@ -8,10 +8,10 @@ %hash = (); sub get_sub ($$$) { - my ($folder, $first, $last) = @_; + my($folder, $first, $last) = @_; my $dir = expand_path($folder); - my ($name, $val); + my($name, $val); open(SEQ, "$dir/.mh_sequences") || return; diff --git a/img/dist/IM/dot.im/getchk.sbr b/img/dist/IM/dot.im/getchk.sbr index decd6d5c..ea5b266b 100644 --- a/img/dist/IM/dot.im/getchk.sbr +++ b/img/dist/IM/dot.im/getchk.sbr @@ -1,7 +1,7 @@ # get messages sent to me directly sub getchk_sub { - local ($href) = shift; + local($href) = shift; # if (my_addr($href->{'to'}, $href->{'cc'}) { if ($href->{'to'} =~ /motonori/i || $href->{'cc'} =~ /motonori/i) { diff --git a/img/dist/IM/dot.im/getchk.sbr.postpet b/img/dist/IM/dot.im/getchk.sbr.postpet index d4818d94..a293a36b 100644 --- a/img/dist/IM/dot.im/getchk.sbr.postpet +++ b/img/dist/IM/dot.im/getchk.sbr.postpet @@ -1,7 +1,7 @@ # do not get messages from PostPet sub getchk_sub { - local ($href) = shift; + local($href) = shift; if ($href->{'x-mailer'} =~ /PostPet/i && $href->{'content-type'} =~ /multipart.+kiritorisen/i) { diff --git a/img/dist/IM/dot.im/scan.sbr b/img/dist/IM/dot.im/scan.sbr index 7fd83a11..86fb0261 100644 --- a/img/dist/IM/dot.im/scan.sbr +++ b/img/dist/IM/dot.im/scan.sbr @@ -12,7 +12,7 @@ $symbol_table{'{from}'} = 'fromaddr:'; # can be referenced with %{from} in Form #$REF_SYMBOL{'from:'} = 1; sub scan_sub { - local ($href) = shift; + local($href) = shift; # annotation mark if ($href->{'replied'} ne '') { diff --git a/img/dist/IM/dot.im/scan.sbr.sample1 b/img/dist/IM/dot.im/scan.sbr.sample1 index 126f64ba..eec5fc6e 100644 --- a/img/dist/IM/dot.im/scan.sbr.sample1 +++ b/img/dist/IM/dot.im/scan.sbr.sample1 @@ -2,7 +2,7 @@ $symbol_table{'W'} = 'wdate:'; $NEEDSAFE_HASH{'wdate:'} = 1; # if the field contains JIS characters sub scan_sub { - local ($href) = shift; + local($href) = shift; if (${$href}{'date'} =~ /([A-Z][a-z][a-z]), /) { if ($+ eq 'Mon') { diff --git a/img/dist/IM/dot.im/scan.sbr.sample2 b/img/dist/IM/dot.im/scan.sbr.sample2 index 6f54ad0b..fa99ef0d 100644 --- a/img/dist/IM/dot.im/scan.sbr.sample2 +++ b/img/dist/IM/dot.im/scan.sbr.sample2 @@ -6,7 +6,7 @@ ); sub scan_sub { - local ($href) = shift; + local($href) = shift; my($folder, $pattern); my($eval_string); |
