diff options
author | Julian Blake Kongslie <jblake@omgwallhack.org> | 2011-04-27 19:31:37 -0700 |
---|---|---|
committer | Julian Blake Kongslie <jblake@omgwallhack.org> | 2011-04-27 19:31:37 -0700 |
commit | 127b307d286fd851bebf2b067bc8645a6e22f04a (patch) | |
tree | 8bacb11c0eaf56d8da4275916c218f9ab73d4293 /pinyadmin/sbin/newrepo | |
parent | 430a5c47e38611704acebba04fac2927a9a0beff (diff) | |
download | piny-code-127b307d286fd851bebf2b067bc8645a6e22f04a.tar.gz piny-code-127b307d286fd851bebf2b067bc8645a6e22f04a.zip |
Emails for creating and removing repos.
Diffstat (limited to 'pinyadmin/sbin/newrepo')
-rwxr-xr-x | pinyadmin/sbin/newrepo | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pinyadmin/sbin/newrepo b/pinyadmin/sbin/newrepo index 5df6ee5..a63d96a 100755 --- a/pinyadmin/sbin/newrepo +++ b/pinyadmin/sbin/newrepo @@ -44,6 +44,23 @@ while( 1 ) { }; +my $config = Piny::Config->new( ); +my $dest = $config->piny_newuseremail; + +unless( open( MAIL, "|/usr/lib/sendmail -t" ) ) { + die "Couldn't execute sendmail: $!\n"; +}; +print MAIL <<END; +To: $dest +Subject: Creating piny repo $name +Content-type: text/plain; charset=us-ascii + +A new piny repo ``$name'' has been created. + +Description: $description +END +close( MAIL ); + my $repo = Piny::Repo->create( $name, $description ); print "Repo URL: " . $repo->ikiwiki_url . "\n"; |