aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2016-04-22 08:40:46 -0400
committerTeddy Wing2016-04-22 08:40:46 -0400
commit622dbe1cf22472c4b72867a7d34b289afaba5160 (patch)
tree1856912eb0252adbef8f2fbf00258fb82551900f
parent45982020e3b4655436f691804a3f8f3ade2ceb39 (diff)
downloadmutt-alias-auto-add-622dbe1cf22472c4b72867a7d34b289afaba5160.tar.bz2
main: Remove pseudocode
The program is nearly implemented and this information is no longer needed.
-rw-r--r--src/main.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/main.rs b/src/main.rs
index 77f230a..cba6d9e 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -141,21 +141,4 @@ fn main() {
for l in &input {
println!("{}", l);
}
-
-// if alias not new
-// do nothing
-// if alias is new
-// if real_alias is in alias file
-// if email address is in alias file
-// do nothing
-//
-// find all instances of real_alias
-// get instance with greatest id number
-//
-// change real_alias to "#{real_alias}-#{id + 1}"
-//
-// if only one instance
-// append "-2" to real_alias
-//
-// add alias to alias file
}