similar to: DO NOT REPLY [Bug 7951] New: Option for case insensitivity in filter rules

Displaying 20 results from an estimated 10000 matches similar to: "DO NOT REPLY [Bug 7951] New: Option for case insensitivity in filter rules"

2006 Jan 25
12
DO NOT REPLY [Bug 3444] New: Cygwin files trashed when they only differ in the case of the name
https://bugzilla.samba.org/show_bug.cgi?id=3444 Summary: Cygwin files trashed when they only differ in the case of the name Product: rsync Version: 2.6.6 Platform: x86 OS/Version: Windows XP Status: NEW Severity: critical Priority: P3 Component: core AssignedTo: wayned@samba.org
2007 Feb 28
2
Feature Request: case insensitivity for filter rules
Many of my clients are Windows-based... I can't change that. The are also, unfortunately, not really tech-savvy. In an effort to make things as easy-to-use-as-possible I'm attempting to write an easy how-to for their rsyncing... feedback is that they just aren't getting the case problem. I'll give the exact example: Please exclude all "sys" files from your backup.
2006 Oct 24
2
Question about Case Insensitivity
Hi, I am trying to make a Linux filesystem appear case-insensitive and I got the idea that I could use a SAMBA loopback mount to do this. I almost succeeded on my first try but I ran into a snag I have no answer for yet. My setup involves sharing filesystem "/a" and then mounting it on "/b". I can use "ls -l" on the "/b" filesystem in a case-insensitive
2006 Jul 13
1
What is the best way to provide case insensitivity?
Hello Is this still the only way to make rsync case insensitive, or is there a smarter/built-in way that I don't know about? This is only a part of a much larger include file! - *.[Gg][Ii][Dd] - *.[Ll][Nn][Kk] - *.[Oo][Ll][Dd] - *.[Tt][Ee][Mm][Pp] - *.[Tt][Mm][Pp] - [Tt][Hh][Uu][Mm][Bb][Ss].[Dd][Bb] Many thanks, Steve :)
2003 Oct 29
2
workaround for HFS+'s case-insensitivity?
I am using Mike Rubel's snapshot-style rsync to do backups from my web server (Linux) to my desktop (MacOS X). Mostly, this works great, except where case sensitivity (or rather, HFS+'s semi-lack thereof) causes problems. Specifically, it seems impossible to successfully back up my Linux box's /usr/share/terminfo, as it contains directories that differ ONLY in case (e.g.,
2010 Jun 14
4
DO NOT REPLY [Bug 7512] New: Make --skip-compress case insensitive
https://bugzilla.samba.org/show_bug.cgi?id=7512 Summary: Make --skip-compress case insensitive Product: rsync Version: 3.0.7 Platform: x64 OS/Version: FreeBSD Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned at samba.org ReportedBy: dennylin93 at hs.ntnu.edu.tw
2004 Feb 17
1
Feature request: case insensitivity
I sync files to a memory stick fairly frequently. The memory stick uses a basic FAT format, which kills case. What's more, on some platforms (Windows), the drivers make all filenames uppercase, whereas on others (linux, mac) all the filenames are lowercase. So I currently have a script which will go through the source directory, rename all of the files to all upper or all lower case,
2007 Jul 31
2
Linux File System w/case-insensitivity
I used to mount some files via Samba which resided on a windows machine on a CentOS box. We moved the files to a NetApp filer, and I was unable to mount those files using either Samba or CIFS. Most of my problems with Samba were related to the (Windows?) password encryption scheme that has not been included in the Samba suite. Even if I use the mount t cifs, it didn't work. So on the
2014 Mar 02
2
Using ZFS Case insensitive filesystems with Samba
>> Here's something I learned when working with the FreeNAS folks : >> ZFS can be configured to be case insensitive when >> you create the filesystem (NOTE - cannot be altered >> *after* the filesystem is created). >> zfs create -o casesensitivity=insensitive filesystem In this case, will ZFS preserve capitals in file and directory names if they are so created
2007 Jun 20
2
[PATCH] Case insensitive matching for the regex plugin
Hi, I have created an addition to the regex plugin that allows case insensitive matching for title/class/name/role. To enable the case insentive matching, I chose to prepend an 'i' before the tag (ititle=, iclass=, ...). The patch is obviously attached ;-) Are there any objections against putting this code in? Regards, Danny -------------- next part -------------- A non-text attachment
2008 Apr 29
2
case insensitive file system
We have an application that was build on a windows platform that expects a case insensitive file system. Is there a way to set one up in CentOS? NTFS should work, I think, but I feel uneasy using that under Linux. Russ
2012 Jan 15
2
How to make the filesystem case-insensitive in Wine 1.3.35 ?
Hi everyone, recently I get crazy about this software, but I came across a little trouble, can you help me? Thank a lot. It seems that there's no corresponding item that I can do with it in winecfg. Since my version is 1.3.35, I can't find the configure file like "~/.wine/configure". So, what's the proper way to solve this problem? Thanks.
2012 Oct 02
3
case insensitive inclusion validation
I want to add case_sensitive option to inclusion validation. This will allow to do: validates :numbers, :inclusion => { :in => %(One Two), :case_sensitive => false } Does it make a sense? Thanks. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Core" group. To view this discussion on the web visit
2013 Jul 25
2
Case-insensitive "detail" mailboxes?
We're using sieve with LMTP. We want to have lda_mailbox_autocreate and lmtp_save_to_detail_mailbox. Is there a way to make the "detail" case-insensitive? If so I have not found it yet. I suppose we could lowercase the input string for the SQL userdb query, but that's not what is wanted. The idea being that if a user makes a mailbox called "Test" is that user+test
2010 Jun 19
3
Case Insensitive TFTPD
I am trying to do file transfers through tftpd under fedora and I need the server to be case insensitive. I could not find any way to achieve this! Manual is useless! As an example I need to transfer file "foo.ext" even if I request file "FOO.Ext" which now spits an error saying that it does not exists. How can I do that?
2006 Aug 14
3
case insensitive exclusion_of
I have the following validation code, however it will allow variations in case. Like ''Admin'' and ''admiN'', etc validates_exclusion_of :login, :in => %w( admin ), :message => "is reserved for system accounts" how can I make this validation case insensitive? -- Posted via http://www.ruby-forum.com/.
2006 Mar 10
5
case insensitive search
I am having trouble with a simple gallery search. I type in a segment of the address and i only seem to be getting results if I use the correct case. This is in my Gallery controller: def search @gallery = Gallery.find(:all, :include => :property, :conditions => "address LIKE ''%#{@params[:keywords]}%''") end On a different note: I am having
2019 Feb 20
3
[PATCH 0/2] Cygwin: allow user and group case-insensitive Unicode strings
Windows usernames are case-insensitive and almost any Unicode character is allowed in a username. The user should be able to login with her username given in any case and not be refused. However, this opens up a security problem in terms of the sshd_config Match rules. The match rules for user and group names have to operate case-insensitive as well, otherwise the user can override her settings
2007 Dec 06
12
DO NOT REPLY [Bug 5124] New: Lessons to learn from other tools, better use of resources, speed gains
https://bugzilla.samba.org/show_bug.cgi?id=5124 Summary: Lessons to learn from other tools, better use of resources, speed gains Product: rsync Version: 3.0.0 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P3 Component: core AssignedTo:
2009 Feb 03
2
Case insensitive user names
Hi, Im looking for a way so I can have case insensitive user names, is there a configuration directive for this option ? as all I can find is the below patch with should give me what im looking for .. http://www.dovecot.org/list/dovecot/2004-March/003078.html