From 6623458f9b6f6fcf977409189667c1be17bf3aeb Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Tue, 16 Aug 2016 08:11:19 +0200 Subject: rename github account --- LICENSE | 2 +- README.markdown | 4 ++-- activate.go | 2 +- checkjobs.go | 4 ++-- confhelper/confhelper.go | 2 +- db.go | 4 ++-- deleteacc.go | 2 +- handler.go | 2 +- jobedit.go | 6 +++--- jobs.go | 2 +- login.go | 2 +- mailing.go | 4 ++-- mailing/mailer.go | 2 +- mailing/sendmail_mailer.go | 2 +- mailing/smtp_mailer.go | 2 +- mails.go | 4 ++-- main.go | 8 ++++---- model/dbmodel.go | 2 +- model/mysql/jobs.go | 4 ++-- model/mysql/mysql.go | 2 +- model/mysql/users.go | 2 +- pwreset.go | 2 +- register.go | 2 +- settings.go | 2 +- tpls.go | 2 +- 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" -- cgit v1.2.3-54-g00ecf