Displaying 20 results from an estimated 1000 matches similar to: "potential bug with hosts allow and hosts deny"
2000 Feb 23
3
newbie desperate for help
I just installed Samba for the first time. Installed and setup like a dream. Unfortunately, I can't login to save my life. The server appears in the Net. Neighborhood, but when I double-click to login, the login window give the following message:
Incorrect password or unknown username for \\SERVERNAME
Entering a username and password (from /etc/passwd) returns:
\\SERVERNAME is not
2002 Sep 27
0
Q: DOES YOUR FOREIGN ACCENT SIMPLY GET IN THE WAY?
This is a multi-part message in MIME format
--cbbddbee-7174-4dcb-b902-950f66a8d044
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
Q: " Would you like to Lose Your Accent ? "
- DO YOU FIND OTHERS HAVE A HARD TIME UNDERSTANDING WHAT YOU ARE TRYING TO =
CONVEY?
- DO YOU FIND THE NEED TO REPEAT YOURSELF FOR OTHERS TO UNDERSTAND YOU =
CLEARLY?
-
2002 Sep 27
0
Q: DOES YOUR FOREIGN ACCENT SIMPLY GET IN THE WAY?
This is a multi-part message in MIME format
--cbbddbee-7174-4dcb-b902-950f66a8d044
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable
Q: " Would you like to Lose Your Accent ? "
- DO YOU FIND OTHERS HAVE A HARD TIME UNDERSTANDING WHAT YOU ARE TRYING TO =
CONVEY?
- DO YOU FIND THE NEED TO REPEAT YOURSELF FOR OTHERS TO UNDERSTAND YOU =
CLEARLY?
-
2015 Aug 13
2
sieve-filter failure problems
I use sieve-filter for postprocessing misclassified mail.
For false positives I use the following script:
require [ "variables", "include", "fileinto" ];
global [ "FORCENOSPAM", "ext", "ext1" ];
set "FORCENOSPAM" "YES";
fileinto "JUNK-PRENOUCE";
if header :matches "Delivered-To"
2018 Jul 23
1
Suggestion for updating `p.adjust` with new method (BKY 2006)
Dear R contributors,
I suggest adding a new method to `p.adjust` ("Adjust P-values for Multiple
Comparisons",
https://stat.ethz.ch/R-manual/R-devel/library/stats/html/p.adjust.html).
This new method is published in Benjamini, Krieger, Yekutieli 2016 Adaptive
linear step-up procedures that control the false discovery rate
(Biometrika). https://doi.org/10.1093/biomet/93.3.491
This paper
2015 Aug 07
2
pigeonhole/lda accessing -m folder
hi jost thx for the reply,
by access I mean to read the variable
require ["fileinto", "variables", "?destfolder?" ];
if anyof ( destfolder :matches "*") {
fileinto "${1}/subfolder";
}else{
fileinto "INBOX/subfolder";
}
On 08/07/2015 12:26 PM, Jost Krieger wrote:
> On Fri Aug 7 12:19:22 2015, matthias lay wrote:
2015 Jul 30
1
Dovecot under Linux with mail-extension and case insesitiv
Am 30.07.2015 um 08:52 schrieb Jost Krieger:
> On Wed Jul 29 22:42:32 2015, Sascha wrote:
>
>> i use doevecot 2.2.18 current. My Problem is with email-extension and
>> case sensitiv folders.
>>
>> Example:
>> user+extenstion will be delivered to the user and subfolder extenstion
>> so this is okay.
>> but user+extenstion will not be delivert to the
2012 Aug 20
1
Is it possible to save only some messages compressed to mdbox? (2.1.6)
I'm trying to save some messages as compressed (via zlib plugin) and it
doesn't seem to work.
Here's a log line (I'm logging to stderr):
d k 1345467448.705591500 1345467448.705596500 1345467448.974808500 1650 <XXXXXXXXXXXXXXXXXXXXXXXXXX at YYY.ruhr-uni-bochum.de> local.jost.krieger+hirn at ruhr-uni-bochum.de 10909 80
Extra: -o plugin/zlib_save_level=9 -o
2012 Sep 18
1
Changing Quota downward for special Mailboxes? (2.1.6)
It seems there is no way to correct te quota limit downward for some
mailboxes, like:
quota_rule9 = UCE-TMP:storage=-10%%
The idea is to not eat up the users storage with spam, so that spam
stays in the queue (for some time) while real mail gets delivered.
There *is* a line
} else if (*value != '-' && relative_rule) {
in quota.c, but nothing else handles it,
2015 Jul 30
0
Dovecot under Linux with mail-extension and case insesitiv
On Wed Jul 29 22:42:32 2015, Sascha wrote:
> i use doevecot 2.2.18 current. My Problem is with email-extension and
> case sensitiv folders.
>
> Example:
> user+extenstion will be delivered to the user and subfolder extenstion
> so this is okay.
> but user+extenstion will not be delivert to the user and exiting
> subfolder Extenstion so that is not okay.
> The mail
2015 Aug 07
0
pigeonhole/lda accessing -m folder
On Fri Aug 7 12:19:22 2015, matthias lay wrote:
> anybody knows, if there is a way to acces the folder from a call like this
>
> deovecot-lda -m destfolder
>
> from within a sieve script?
Depending on what you mean by "access", this could be as easy as
require "fileinto";
fileinto "destfolder";
Yours
Jost Krieger
--
| Jost.Krieger+sig at
2015 Aug 07
0
pigeonhole/lda accessing -m folder
fixed my problem.
if somebody is interested.
I added an variable to the environment extension, which is quite easy.
And the value of the folder is already there. so this is all:
src/lib-sieve/plugins/environment/ext-environment-common.c
static const char *envit_spfolder_get_value
(struct sieve_instance *svinst,
const struct sieve_script_env *senv)
{
return
2015 Aug 10
2
pigeonhole/lda accessing -m folder
complete patch. some parts were missing before
diff --git a/src/lib-sieve/plugins/environment/ext-environment-common.c
b/src/lib-sieve/plugins/environment/ext-environment-common.c
--- a/src/lib-sieve/plugins/environment/ext-environment-common.c
+++ b/src/lib-sieve/plugins/environment/ext-environment-common.c
@@ -24,7 +24,8 @@ static const struct sieve_environment_item
*core_env_items[] = {
2015 Aug 10
0
PATCH for Stephan: Re: pigeonhole/lda accessing -m folder
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Mon, 10 Aug 2015, matthias lay wrote:
Hi Matthias,
there is another possibility:
require ["fileinto", "variables", "subaddress", "envelope"];
if envelope :detail :matches "to" "*"
{
set "myfolder" "${1}";
} else {
set "myfolder"
2006 Jun 14
0
net ads join's generated keytab and solaris
Hey all. I am working on getting solaris 10 and 9 clients authenticating to
active directory. We have a test setup with windows 2003 r2 and the unix
fields filled out. All was going well with a combination of pam_krb5 and
nss_ldap and ldap mappings, including working automouting of home directories.
This included orginally, set up instructions from microsoft where they said to
create a user
2016 Jan 02
0
Please review my smb.conf
On 02/01/16 20:59, DavidA wrote:
> Hi Rowland
>
>> (just a thought, you have given the Samba server a fixed ipaddress,
>> hostname and domain name, haven't you ?).
>
> The Pi has a fixed IP address and hostname. I see:
>
> $ cat /etc/hostname
> RPHS
OK, try running these commands:
hostname
hostname -s
hostname -d
hostname -f
hostname -i
If your rpi has the
2012 Nov 28
2
Any chance to access read-only mdboxes?
We would like to provide a self-service restore function to our users
using their IMAP client of choice..
Our idea was to use a snapshot (under ZFS, btrfs, whatever) and have it
available to the user in a namespace.
Unfortunately, but understandably, dovecot doesn't like the mdbox
structure to be read-only. Is there any chance to change that?
In the meantime, we could use a read-write
2005 Jul 11
3
charset issue
Hi,
When i restart smbd/nmbd, all the files inside all shares change their
names.
All the files are affected specially accent portuguese brazilian files.
File names become a mess in whole samba server.
1) Has anyone seen this kind of samba server behavior?
2) Im using samba 3.0.4, is there a recognized bug? , if i change to
latest version will this issue be solved?
Any suggestions are highly
2012 Dec 07
2
Performance problems while running doveadm purge
I have a rather large and active mdbox (28 GB, 3M mess, 1200
deliveries/day). I usually have no problems working with those mails,
and there is some batch processing going on (via doveadm).
Every few weeks I try my luck running doveadm purge, and this
a) crunches about 5GB (to be expected),
b) takes rather long (ok),
c) leads to long stretches of blocked mdbox, which is the problem.
I always
2016 Jan 03
2
Please review my smb.conf
Hi Rowland
Thanks for your reply. I see:
$ cat /etc/hosts
127.0.0.1 localhost
::1 localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
127.0.1.1 RPHS
So I guess I should edit the hosts file and specify RPHS's fixed IP address.
I don't think domain name is relevant for a home network so I won't specify
one. Will