summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaria Carolin Chabowski <laria@laria.me>2016-08-16 08:11:19 +0200
committerLaria Carolin Chabowski <laria@laria.me>2016-08-16 08:11:19 +0200
commit6623458f9b6f6fcf977409189667c1be17bf3aeb (patch)
treef7523536d1dd27788292c27f8e4779ae545c7cca
parentc5cf190a6cf9ffa83c5c7795e19e0f724f5597dd (diff)
downloadmailremind-6623458f9b6f6fcf977409189667c1be17bf3aeb.tar.gz
mailremind-6623458f9b6f6fcf977409189667c1be17bf3aeb.tar.bz2
mailremind-6623458f9b6f6fcf977409189667c1be17bf3aeb.zip
rename github accountHEADmaster
-rw-r--r--LICENSE2
-rw-r--r--README.markdown4
-rw-r--r--activate.go2
-rw-r--r--checkjobs.go4
-rw-r--r--confhelper/confhelper.go2
-rw-r--r--db.go4
-rw-r--r--deleteacc.go2
-rw-r--r--handler.go2
-rw-r--r--jobedit.go6
-rw-r--r--jobs.go2
-rw-r--r--login.go2
-rw-r--r--mailing.go4
-rw-r--r--mailing/mailer.go2
-rw-r--r--mailing/sendmail_mailer.go2
-rw-r--r--mailing/smtp_mailer.go2
-rw-r--r--mails.go4
-rw-r--r--main.go8
-rw-r--r--model/dbmodel.go2
-rw-r--r--model/mysql/jobs.go4
-rw-r--r--model/mysql/mysql.go2
-rw-r--r--model/mysql/users.go2
-rw-r--r--pwreset.go2
-rw-r--r--register.go2
-rw-r--r--settings.go2
-rw-r--r--tpls.go2
25 files changed, 36 insertions, 36 deletions
diff --git a/LICENSE b/LICENSE
index c11fdc0..4320247 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2013 Kevin Chabowski
+Copyright (c) 2013 Laria Carolin Chabowski
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
diff --git a/README.markdown b/README.markdown
index d582715..fec1423 100644
--- a/README.markdown
+++ b/README.markdown
@@ -10,7 +10,7 @@ I often send myself an email to remind me of something. If the event I want to b
Get the sources and build mailremind with `go build`.
-Or simply run `go get github.com/kch42/mailremind`. This will place the compiled binary in your `$GOPATH/bin` directory.
+Or simply run `go get github.com/silvasur/mailremind`. This will place the compiled binary in your `$GOPATH/bin` directory.
## Configuration
@@ -22,4 +22,4 @@ Simply run `./mailremind -config mailremind.ini` and mailremind will listen on t
## Public mailremind installations
-* [mailremind.kch42.net](http://mailremind.kch42.net)
+* [mailremind.silvasur.net](http://mailremind.silvasur.net)
diff --git a/activate.go b/activate.go
index a3177ab..67b0c78 100644
--- a/activate.go
+++ b/activate.go
@@ -2,7 +2,7 @@ package main
import (
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"log"
"net/http"
)
diff --git a/checkjobs.go b/checkjobs.go
index af9e9e5..eecbe72 100644
--- a/checkjobs.go
+++ b/checkjobs.go
@@ -3,8 +3,8 @@ package main
import (
"bytes"
"fmt"
- "github.com/kch42/mailremind/confhelper"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/confhelper"
+ "github.com/silvasur/mailremind/model"
"log"
"time"
)
diff --git a/confhelper/confhelper.go b/confhelper/confhelper.go
index 607f50f..d470357 100644
--- a/confhelper/confhelper.go
+++ b/confhelper/confhelper.go
@@ -1,7 +1,7 @@
package confhelper
import (
- "github.com/kch42/simpleconf"
+ "github.com/silvasur/simpleconf"
"log"
)
diff --git a/db.go b/db.go
index b752693..30d044c 100644
--- a/db.go
+++ b/db.go
@@ -1,8 +1,8 @@
package main
import (
- "github.com/kch42/mailremind/confhelper"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/confhelper"
+ "github.com/silvasur/mailremind/model"
"log"
)
diff --git a/deleteacc.go b/deleteacc.go
index 36ef758..1665acb 100644
--- a/deleteacc.go
+++ b/deleteacc.go
@@ -2,7 +2,7 @@ package main
import (
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"log"
"net/http"
)
diff --git a/handler.go b/handler.go
index 8e84e76..1a0756c 100644
--- a/handler.go
+++ b/handler.go
@@ -2,7 +2,7 @@ package main
import (
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"html/template"
"log"
"net/http"
diff --git a/jobedit.go b/jobedit.go
index b3bedf0..10f6fc6 100644
--- a/jobedit.go
+++ b/jobedit.go
@@ -3,9 +3,9 @@ package main
import (
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/confhelper"
- "github.com/kch42/mailremind/model"
- "github.com/kch42/mailremind/schedule"
+ "github.com/silvasur/mailremind/confhelper"
+ "github.com/silvasur/mailremind/model"
+ "github.com/silvasur/mailremind/schedule"
"log"
"net/http"
"net/url"
diff --git a/jobs.go b/jobs.go
index f94a656..f6c7371 100644
--- a/jobs.go
+++ b/jobs.go
@@ -2,7 +2,7 @@ package main
import (
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"net/http"
)
diff --git a/login.go b/login.go
index e7acbb0..84cda8a 100644
--- a/login.go
+++ b/login.go
@@ -3,7 +3,7 @@ package main
import (
"code.google.com/p/go.crypto/bcrypt"
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"log"
"net/http"
)
diff --git a/mailing.go b/mailing.go
index 005bb8e..5a5c6b7 100644
--- a/mailing.go
+++ b/mailing.go
@@ -1,8 +1,8 @@
package main
import (
- "github.com/kch42/mailremind/confhelper"
- "github.com/kch42/mailremind/mailing"
+ "github.com/silvasur/mailremind/confhelper"
+ "github.com/silvasur/mailremind/mailing"
"log"
)
diff --git a/mailing/mailer.go b/mailing/mailer.go
index c9ab8d0..32d84d5 100644
--- a/mailing/mailer.go
+++ b/mailing/mailer.go
@@ -1,7 +1,7 @@
package mailing
import (
- "github.com/kch42/simpleconf"
+ "github.com/silvasur/simpleconf"
)
// Mailer is a interface that defines the Mail function.
diff --git a/mailing/sendmail_mailer.go b/mailing/sendmail_mailer.go
index ad864fb..b4f272b 100644
--- a/mailing/sendmail_mailer.go
+++ b/mailing/sendmail_mailer.go
@@ -3,7 +3,7 @@ package mailing
import (
"errors"
"fmt"
- "github.com/kch42/simpleconf"
+ "github.com/silvasur/simpleconf"
"os/exec"
)
diff --git a/mailing/smtp_mailer.go b/mailing/smtp_mailer.go
index 2a90173..a9b333a 100644
--- a/mailing/smtp_mailer.go
+++ b/mailing/smtp_mailer.go
@@ -2,7 +2,7 @@ package mailing
import (
"errors"
- "github.com/kch42/simpleconf"
+ "github.com/silvasur/simpleconf"
"net/smtp"
)
diff --git a/mails.go b/mails.go
index 5fe663d..971a595 100644
--- a/mails.go
+++ b/mails.go
@@ -3,8 +3,8 @@ package main
import (
"bytes"
"fmt"
- "github.com/kch42/mailremind/confhelper"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/confhelper"
+ "github.com/silvasur/mailremind/model"
"log"
"path"
"text/template"
diff --git a/main.go b/main.go
index b44e7e5..6d384ce 100644
--- a/main.go
+++ b/main.go
@@ -6,10 +6,10 @@ import (
"fmt"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/confhelper"
- "github.com/kch42/mailremind/model"
- _ "github.com/kch42/mailremind/model/mysql"
- "github.com/kch42/simpleconf"
+ "github.com/silvasur/mailremind/confhelper"
+ "github.com/silvasur/mailremind/model"
+ _ "github.com/silvasur/mailremind/model/mysql"
+ "github.com/silvasur/simpleconf"
"log"
"math/rand"
"net/http"
diff --git a/model/dbmodel.go b/model/dbmodel.go
index a4f4e4a..3d647e3 100644
--- a/model/dbmodel.go
+++ b/model/dbmodel.go
@@ -3,7 +3,7 @@ package model
import (
"errors"
"fmt"
- "github.com/kch42/mailremind/schedule"
+ "github.com/silvasur/mailremind/schedule"
"sync"
"time"
)
diff --git a/model/mysql/jobs.go b/model/mysql/jobs.go
index 2f30005..a2e87c4 100644
--- a/model/mysql/jobs.go
+++ b/model/mysql/jobs.go
@@ -3,8 +3,8 @@ package mysql
import (
"database/sql"
"fmt"
- "github.com/kch42/mailremind/model"
- "github.com/kch42/mailremind/schedule"
+ "github.com/silvasur/mailremind/model"
+ "github.com/silvasur/mailremind/schedule"
"log"
"time"
)
diff --git a/model/mysql/mysql.go b/model/mysql/mysql.go
index 6314a44..f94b617 100644
--- a/model/mysql/mysql.go
+++ b/model/mysql/mysql.go
@@ -4,7 +4,7 @@ import (
"database/sql"
"fmt"
_ "github.com/go-sql-driver/mysql"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"strconv"
)
diff --git a/model/mysql/users.go b/model/mysql/users.go
index 8d3eea6..e4b3301 100644
--- a/model/mysql/users.go
+++ b/model/mysql/users.go
@@ -2,7 +2,7 @@ package mysql
import (
"database/sql"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"log"
"time"
)
diff --git a/pwreset.go b/pwreset.go
index 394b183..276dfdb 100644
--- a/pwreset.go
+++ b/pwreset.go
@@ -3,7 +3,7 @@ package main
import (
"code.google.com/p/go.crypto/bcrypt"
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"log"
"net/http"
)
diff --git a/register.go b/register.go
index 0b45ca3..51992a3 100644
--- a/register.go
+++ b/register.go
@@ -3,7 +3,7 @@ package main
import (
"code.google.com/p/go.crypto/bcrypt"
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"log"
"math/rand"
"net/http"
diff --git a/settings.go b/settings.go
index 4548ca3..08825d8 100644
--- a/settings.go
+++ b/settings.go
@@ -3,7 +3,7 @@ package main
import (
"code.google.com/p/go.crypto/bcrypt"
"github.com/gorilla/sessions"
- "github.com/kch42/mailremind/model"
+ "github.com/silvasur/mailremind/model"
"log"
"net/http"
"time"
diff --git a/tpls.go b/tpls.go
index a861664..e2b77ac 100644
--- a/tpls.go
+++ b/tpls.go
@@ -1,7 +1,7 @@
package main
import (
- "github.com/kch42/mailremind/confhelper"
+ "github.com/silvasur/mailremind/confhelper"
"html/template"
"log"
"path"