Displaying 13 results from an estimated 13 matches for "senstiv".
Did you mean:
senstive
2006 Aug 07
2
Make user name CaSe Insensitive
Hi,
I have mail box info at mydomain.com stored in MySQL db.
But dovecot is allowing me to login as both
INFO at MYDOMAIN.COM
info at mydomain.com
Shows two mail boxes. The small letter account is the one mail server
really deliver all mails.
Is there any way i can specify all login names are small letters, so
that user always access real mail box ?
Regards,
Yujin
2008 Jun 14
1
Caseless folder delivery?
I'm using exim4 to deliver into dovecot 1.1, and using plus-addressing to
deliver mailing lists directly to appropriate folders in my "lists" mailbox.
I created a file called /folder-map.lists that looks like
## folder-map.lists
dovecot: Dovecot
lpedge: Linux PowerEdge
... and so on. So mail to lists-lpedge at jay.fm goes to the "Linux PowerEdge"
folder.
The one
2019 Sep 11
5
[Bug] Sieve vacation :addresses match only,> case-sensitive?
> I want to have it case-insensitive again, like in Pigeonhole version 0.4.24
i would also plea for making it case-insensitive again! We were hit by this too,
and I never saw any mail system in which the local Part ist Case sensitive!
Sincerly,
Klaus Steinberger
--
Rechnerbetriebsgruppe / IT, Fakult?t f?r Physik
Klaus Steinberger
FAX: +49 89 28914280
Tel: +49 89 28914287
--------------
2010 Aug 01
0
How to connect R with SAP/ERP
...e RODBC and RDBI packages.
Unless you are an auditor you are unlikely to get direct ODBC access to the
ERP's transaction tables -- it would be a huge security risk. From a
security standpoint end users should not have arbitrary write access because
they could accidentially or maliciously alter senstive data. Even read-only
access can be sensitive, because of salaries, costs and confidential
payments to third parties (perhaps as part of a lawsuit settlement) and
non-public financial information such as revenues and profits prior to their
being announced to securities markets. Moreover, under the...
2005 Jun 08
6
strip realms and force lowercasing of usernames?
Is it possible for dovecot to strip realms and force lowercasing of usernames?
We have a lot of dumb customers who try logging in to pop3 with crap like
UsERNAmE and bla at nonexistentdomain.com. All our usernames are lowercase
and we have no realms. Trying to get hundreds of customers to fix this is
hard and is a significant and costly support burden.
It would be nice if dovecot could handle
2011 Sep 02
1
determine the latency characteristics of a VM automatically
Hi George,
Tow months ago, we talked about how to reduce the scheduling latency for a
specific VM which runs a mixed workload, where the boost mechanism can not
works well. I have tried some methods to reduce the scheduling latency for
some assumed latency-sensitive VMs and got some progress on it. Now I hope
to make it on demand. That is to say, I hope to get the scheduler to
determine the
2002 Jan 22
3
Help with Beta Distribution
First let me confess that I am a R-novice.
I am trying to fit a beta distribution for a dataset using fitdistr(MASS). I
am having difficulties with it because the function tends to fit a
distribution with a range of 0 to 1 (I guess). However, my dataset is not!
Anytips or tricks will be very much appreciated.
Many Thanks.
T. S. Ramanarayanan, Ph.D.
Aventis CropScience
Research Triangle Park,
2006 Apr 01
0
sftp tab completion patch (First release - NOT FOR INCLUDING YET)
...sftp_conn *conn;
int err, interactive;
EditLine *el = NULL;
History *hl = NULL;
@@ -1257,6 +1448,11 @@
el_set(el, EL_TERMINAL, NULL);
el_set(el, EL_SIGNAL, 1);
el_source(el, NULL);
+
+ /* Tab Completion */
+ el_set(el, EL_ADDFN, "ftp-complete",
+ "Context senstive argument completion", complete);
+ el_set(el, EL_BIND, "^I", "ftp-complete", NULL);
}
conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests);
2007 Dec 12
0
Revisiting sftp tab completion patch
...ftp_conn *conn;
int err, interactive;
EditLine *el = NULL;
History *hl = NULL;
@@ -1370,26 +1607,31 @@
el_set(el, EL_TERMINAL, NULL);
el_set(el, EL_SIGNAL, 1);
el_source(el, NULL);
+
+ /* Tab Completion */
+ el_set(el, EL_ADDFN, "ftp-complete",
+ "Context senstive argument completion", complete);
+ el_set(el, EL_BIND, "^I", "ftp-complete", NULL);
}
conn = do_init(fd_in, fd_out, copy_buffer_len, num_requests);
if (conn == NULL)
fatal("Couldn't initialise connection to server");
- pwd = do_realpath(conn,...
2006 Feb 09
9
Looking for hosting advice
Hello everyone,
I''ve got a Rails app that''s going to replace an in-house application,
where the customers are used to having to deal with maintaining their
own servers and data. As these are non-IT customers, maintaining
servers and data is a long way from their core business and thus quite
costly for them. I''m hoping to slice their costs by removing the
requirement
2015 Aug 08
2
RFC: PGO Late instrumentation for LLVM
...ss to inline
>> all the trivial inlines before instrumentation. In addition to removing
>> the unnecessary count updates for the inline instances, another advantage
>> of pre-inline is to provide context sensitive profile for these small
>> inlined functions. This context senstive profile can further improve the
>> PGO based optimizations. Here is a contrived example:
>> void bar (int n) {
>> if (n&1)
>> do_sth1();
>> else
>> do_sth2();
>> }
>>
>> void caller() {
>> int s = 1;
>> for (; s&...
2015 Aug 10
3
RFC: PGO Late instrumentation for LLVM
...nes before instrumentation. In addition to
> removing the
> >>> unnecessary count updates for the inline instances, another advantage
> of
> >>> pre-inline is to provide context sensitive profile for these small
> inlined
> >>> functions. This context senstive profile can further improve the PGO
> based
> >>> optimizations. Here is a contrived example:
> >>> void bar (int n) {
> >>> if (n&1)
> >>> do_sth1();
> >>> else
> >>> do_sth2();
> >>> }
> >...
2015 Aug 08
3
RFC: PGO Late instrumentation for LLVM
...er solution is to do a pre-inline pass to inline
all the trivial inlines before instrumentation. In addition to removing
the unnecessary count updates for the inline instances, another advantage
of pre-inline is to provide context sensitive profile for these small
inlined functions. This context senstive profile can further improve the
PGO based optimizations. Here is a contrived example:
void bar (int n) {
if (n&1)
do_sth1();
else
do_sth2();
}
void caller() {
int s = 1;
for (; s<100; s+=2)
bar(s);
for (s = 102; s< 200; s+=2)
bar(s);
}
The direction of the br...