search for: lowercase

Displaying 20 results from an estimated 1213 matches for "lowercase".

2009 Jul 09
3
non-lowercase usernames
Should I just make Dovecot lowercase usernames by default in v2.0? auth_username_format = %Lu Does anyone actually want to use non-lowercase usernames? -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: This is a digitally signed me...
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 this in some way. -Dan
2008 Aug 20
4
Conversion - lowercase to Uppercase letters
I would like to know how to convert a string with characters to all uppercase or all lowercase? If anyone could let me know if there exists a function in R for the conversion, that will be very helpful. Regards, Suman [[alternative HTML version deleted]]
2003 Mar 26
1
formal methods and classes and capitalization conventions
Martin Maechler has suggested that I post this comment to r-devel. It was originally posted to bioconductor. --------------------------------- I'd like to raise the issue of a capitalization convention for naming objects in R. Almost everything in R used to be lowercase but recently there is increasing use of mixed upper/lower case to define names. There is potential for using the capitalizations to make code more self explanatory, but only if a consistent system is used. In Java, capitalization is used to indicate the type of object. Names of methods are cap...
2010 Aug 15
1
turn Usernames in Lowercase
Hi, I'm just curious how to force usernames to be modified to lowercase letters if one mixes uper and lower case letters to one salad? Cause my SpamAssassin gets confuesd and treats different spellings of Usernames as different Users - which is uncool. I've heard about something you can add in your dovecot.config to enforce lowercase letters only. Thanks
2017 Mar 03
2
case sensitive hostname matching
...ner since the lowercasing has been delayed till after configuration parsing (by commits d56b44d2dfa093883a5c4e91be3f72d99946b170 and eb6d870a0ea8661299bb2ea8f013d3ace04e2024). Given that hostnames are ususally interpreted in a case insensitive way (and the code actually expects the input to be lowercased anyway) it might be good to perform the comparisons as such. We can either make sure match_hostname() receives a lowercased string indeed or perform the lowercasing there (carefully as not to introduce side effects). One question is, whether *any* hostname matching should be case insensitive...
2009 Dec 02
1
mailboxcasecmp()
...ted. i didn't understand why since it was obviously correct and had no negative impact, at least i didn't think so. Now I've hit another case where case-insensitive mailbox names would be useful: +addressing. If I have a mailbox 'Ext' and I send mail to frank+Ext@, the LHS is lowercased to 'frank+ext' and the +extension delivery doesn't find the 'Ext' mailbox. If the +extension is going to be lowercased, then the mailbox names should be lowercased when looking for them. Or, since 'ext' and 'Ext' can co-exist, the +extension shouldn't be l...
2015 Jul 28
2
ldap attribute modifiers. how to lowercase non ASCII
hi all, I encountered some problem with lowercasing chars like an "?" with user_attrs like this: user_attrs = uid=home=/mail/%Lu, =myvar=%L{ldap:uid} the ? doesnt get lower cased in both cases # doveadm user BL?TULA field value user bl?tula uid vmail gid vmail home /mail/bl?tula mail maildir:~/Maildir:LAYOUT=fs:INBOX=~/Maildir/INBOX myvar bl?tula somebody knows if there a fix for
2011 Oct 03
2
[LLVMdev] [cfe-dev] Unicode path handling on Windows
Am 03.10.2011 22:12, schrieb Nikola Smiljanic: > How about this: > > for (int i = 0; i != NumWChars; ++i) > absPath[i] = std::tolower(absPath[i], std::locale()); > > seems to be working just fine? You have two assumptions here: Assumption 1: For each lowercase character, there is an equivalent uppercase character, and vice versa. This is not true in half a dozen languages according to ftp://ftp.unicode.org/Public/UNIDATA/SpecialCasing.txt . Assumption 2: The transformation from lower case to upper case can be done for each character individually, with...
2014 Aug 30
1
mail_location hashing & lowercasing?
...;T have all directories in one single directory), but can't find the right syntax: mail_location = mdbox:/var/spool/mail/%Ld/<HASHING HERE>/%Ln/mdbox It seems like I'd need to use %N (new hash) on %Ln and then take a substring of that. %2NLn 2 Characters of the %N hash of %Ln (the lowercase username) But this gives me a verbatim "Ln" on the path! -- [*] sys4 AG http://sys4.de, +49 (89) 30 90 46 64 Franziskanerstra?e 15, 81669 M?nchen Sitz der Gesellschaft: M?nchen, Amtsgericht M?nchen: HRB 199263 Vorstand: Patrick Ben Koetter, Marc Schiffbauer Aufsichtsratsvorsitzender:...
2011 Oct 14
3
change uppercase variables
 Hello everyone, I'm trying to change the name variables of a big dataset. Here's more than 300 variables. The point is that I have to match it with another dataset that have same variables, but in lowercase, the I can use rbind and do my work. Is there any function for changing uppercase or lowercase variables? Thank you in advance! José [[alternative HTML version deleted]]
2016 Jul 09
2
[PATCH v3 1/7] lib: string: add functions to case-convert strings
On 08/07/16 23:43, Markus Mayer wrote: > Add a collection of generic functions to convert strings to lowercase > or uppercase. > > Changing the case of a string (with or without copying it first) seems > to be a recurring requirement in the kernel that is currently being > solved by several duplicated implementations doing the same thing. This > change aims at reducing this code duplicati...
2015 Aug 10
0
[PATCH 3/4] v2v: copy virtio drivers without guestfs handle leak
...ist.iter ( + fun path -> + if (match_vio_path_with_os path inspect.i_arch + inspect.i_major_version inspect.i_minor_version + inspect.i_product_variant) then ( + let source = virtio_win // path in + let target = driverdir // (String.lowercase + (Filename.basename path)) in + if verbose () then + printf "Copying virtio driver bits: 'host:%s' -> '%s'\n" + source target; + + g#write target (read_whole_file source) +...
2011 Oct 03
0
[LLVMdev] [cfe-dev] Unicode path handling on Windows
...rieb Nikola Smiljanic: >> How about this: >> >> for (int i = 0; i != NumWChars; ++i) >> absPath[i] = std::tolower(absPath[i], std::locale()); >> >> seems to be working just fine? > > You have two assumptions here: > > Assumption 1: For each lowercase character, there is an equivalent > uppercase character, and vice versa. > This is not true in half a dozen languages according to > ftp://ftp.unicode.org/Public/UNIDATA/SpecialCasing.txt . > > Assumption 2: The transformation from lower case to upper case can be > done for eac...
2008 Oct 12
2
Can I translate the userid to match the UW-POP3 server?
OK, I have been running the UW-POP3 server which currently translates all login ids as lowercase (i.e. Anthony becomes anthony). Now the Dovecot server is very flexible and currently I have not found how to translate the upper case characters to lowercase. What configuration setting will translate the userids to lowercase? -- Albert E. Whale, CHS CISA CISSP Sr. Security, Network, Risk Asses...
2007 Apr 03
1
Lowercase
Hi, Im useing acts_as_ferret and have a code like this: class News < ActiveRecord::Base acts_as_ferret({:fields => { :normalized_text => {:store => :yes }}}) end This should use the default analyzer with lowercase=true If I do something like News.find_by_contents(''Problem'') it doesn''t find anything (though ''Problem'' is in the text). I know the query should lowercase this but it seems it doesn''t. This seems to be a aaf problem, right? Or am I completely...
2015 Oct 07
1
Re: [PATCH 3/5] mllib: Add (Char|String).(lower|upper)case_ascii functions.
...t; > diff --git a/mllib/common_utils.ml b/mllib/common_utils.ml > index f375317..97363df 100644 > --- a/mllib/common_utils.ml > +++ b/mllib/common_utils.ml > @@ -22,10 +22,23 @@ open Common_gettext.Gettext > > module Char = struct > include Char > + > + let lowercase_ascii c = > + if (c >= 'A' && c <= 'Z') > + then unsafe_chr (code c + 32) > + else c > + > + let uppercase_ascii c = > + if (c >= 'a' && c <= 'z') > + then unsafe_chr (code c - 32) > +...
2006 May 17
3
QueryParser lowercase / uppercase and stemming
...N|Xapian::FLAG_LOVEHATE|Xapian::FLAG_WILDCARD); ... So what am I doing wrong? The second thing I wondered about, is there any possibility to forbid queryparser lowercasing of the query string. At least for exact phrase matching I found this quite meaningful. (Data is indexed both, upper- and lowercase) Another thing is the encoding of non ascii chars (I hope I didn't miss something in the postings of the mailing list). After applying UTF-8 patch for xapian version 0.9.5, characters like ? ? ? cause a mistake in parsing a term (e.g. K?ln is processed to 'k' and 'n'). Surp...
2005 Jan 19
2
winbind usernames
...as "john smith", they get a second directory created as "john smith" in /home! (yes, our nt4 usernames have whitespace in them, and yes, it's a headache - but that's another story) This is for a network of 600 pupils and teachers, who cannot remember if they logged in lowercase, uppercase or both. How can I either (i) enforce lowercase only, or (ii) have winbind treat "John" and "john" the same? Thanks -- Matt ___________________________________________________________ ALL-NEW Yahoo! Messenger - all new features - even more fun! http://uk....
2010 Dec 01
2
[LLVMdev] [cfe-dev] draft rule for naming types/functions/variables
...nt parts of the codebase. Just something for you to consider. 2. (more important than #1) I'd like to understand the reason behind your preference for UpperCase names for ivars. Is it just a personal preference or is there a more profound reason? So far, I've heard that some people like lowerCase ivars (clear distinction from types, etc), and some people don't think that helps much. However, I'm yet to hear why UpperCase ivars are considered *better* than lowerCase, so I'm curious. Thanks. -- Zhanyong