forked from cyrusimap/cyrus-imapd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Welcome "git blame" user. This massive commit was decided upon by the Cyrus development team meeting on June 8th, 2015 by unanimous vote. It changes the indent style to "all spaces, 4 spaces per indent level, no tabs", and also strips all trailing whitespace. To assist you with navigating around this change, there are two tags applied to the changes. This commit will be called "posttab" and the one before it "pretab". Chances are, you're trying to find the commit which changed a line, and you've wound up here. You need to redo your "git blame" on prior commits like this: git blame pretab imap/imapd.c (or whatever file you're trying to blame on) This will get you the history of the file before we rewrote all the whitespace. If you have a branch which you want to convert all the commits into the new spacing style for easy rebase/cherry-pick, then you can run: 1) git checkout <mybranch> 2) git rebase pretab 3) git filter-branch --tree-filter tools/remove-tabs.pl pretab^..HEAD 4) git rebase posttab NOTE the "pretab^". It is very important that you keep the ^ so that this commit is the one that collects all the whitespace changes. This will rewrite all the commits on your branch to the new whitespace style and then rebase it on top of the posttab commit. Since the empty pretab commit will be rewritten to match posttab exactly by the filter-branch process, the rebase will be clean and will skip the pretab commit. NOTE: you may need to make fixes at step 2 if your branch is old and won't rebase cleanly on top of pretab. Step 3 is noisy and slow, but should always run correctly.
- Loading branch information
Showing
632 changed files
with
140,744 additions
and
140,744 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ALL versions of the Cyrus IMAP server are now covered by the following copyright: | ||
ALL versions of the Cyrus IMAP server are now covered by the following copyright: | ||
|
||
* Copyright (c) 1994-2008 Carnegie Mellon University. All rights reserved. | ||
* | ||
|
@@ -41,15 +41,15 @@ ALL versions of the Cyrus IMAP server are now covered by the following copyrigh | |
|
||
If you find this software useful and valuable in your work, we would | ||
welcome any support you can offer toward continuing this work. | ||
|
||
We gratefully accept contributions, whether intellectual or monetary. | ||
Intellectual contributions in the form of code or constructive | ||
collaboration can be directed to [email protected] (even if | ||
it is not a bug). | ||
|
||
If you wish to provide financial support to the Cyrus Project, send a | ||
check payable to "Carnegie Mellon University" to | ||
|
||
Project Cyrus | ||
Computing Services | ||
Carnegie Mellon University | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#!/bin/sh | ||
|
||
# | ||
# This is internal documentation for Computing Services at | ||
# Carnegie Mellon University. | ||
# This is internal documentation for Computing Services at | ||
# Carnegie Mellon University. | ||
# | ||
# Please refer to doc/readme.html for the 'real' README. | ||
# | ||
|
@@ -21,7 +21,7 @@ to build configure: | |
sh SMakefile | ||
|
||
to build: | ||
smake init all | ||
smake init all | ||
|
||
then, as admin (suid binaries on AFS) | ||
smake -d install | ||
|
@@ -129,7 +129,7 @@ Locality Name (eg, city) []:Pittsburgh | |
Organization Name (eg, company) [Internet Widgits Pty Ltd]:Carnegie Mellon University | ||
Organizational Unit Name (eg, section) []:Andrew Systems Group | ||
Common Name (eg, YOUR name) []:mail-fe3.andrew.cmu.edu | ||
Email Address []:[email protected] | ||
Email Address []:[email protected] | ||
|
||
- is it a backend? run tools/mkimap (as cyrus!) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.