diff options
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | README.markdown | 4 | ||||
-rw-r--r-- | activate.go | 2 | ||||
-rw-r--r-- | checkjobs.go | 4 | ||||
-rw-r--r-- | confhelper/confhelper.go | 2 | ||||
-rw-r--r-- | db.go | 4 | ||||
-rw-r--r-- | deleteacc.go | 2 | ||||
-rw-r--r-- | handler.go | 2 | ||||
-rw-r--r-- | jobedit.go | 6 | ||||
-rw-r--r-- | jobs.go | 2 | ||||
-rw-r--r-- | login.go | 2 | ||||
-rw-r--r-- | mailing.go | 4 | ||||
-rw-r--r-- | mailing/mailer.go | 2 | ||||
-rw-r--r-- | mailing/sendmail_mailer.go | 2 | ||||
-rw-r--r-- | mailing/smtp_mailer.go | 2 | ||||
-rw-r--r-- | mails.go | 4 | ||||
-rw-r--r-- | main.go | 8 | ||||
-rw-r--r-- | model/dbmodel.go | 2 | ||||
-rw-r--r-- | model/mysql/jobs.go | 4 | ||||
-rw-r--r-- | model/mysql/mysql.go | 2 | ||||
-rw-r--r-- | model/mysql/users.go | 2 | ||||
-rw-r--r-- | pwreset.go | 2 | ||||
-rw-r--r-- | register.go | 2 | ||||
-rw-r--r-- | settings.go | 2 | ||||
-rw-r--r-- | tpls.go | 2 |
25 files changed, 36 insertions, 36 deletions
@@ -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" ) @@ -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" ) @@ -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" @@ -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" @@ -2,7 +2,7 @@ package main import ( "github.com/gorilla/sessions" - "github.com/kch42/mailremind/model" + "github.com/silvasur/mailremind/model" "net/http" ) @@ -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" ) @@ -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" ) @@ -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" @@ -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" ) @@ -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" @@ -1,7 +1,7 @@ package main import ( - "github.com/kch42/mailremind/confhelper" + "github.com/silvasur/mailremind/confhelper" "html/template" "log" "path" |