summary refs log tree commit diff
path: root/atom.c
diff options
context:
space:
mode:
Diffstat (limited to 'atom.c')
-rw-r--r--atom.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/atom.c b/atom.c
index 16215df..14f9d54 100644
--- a/atom.c
+++ b/atom.c
@@ -166,7 +166,7 @@ int atomIndexOpen(FILE *file) {
 	const char *template = XML_DECL Q(
 		<feed xmlns="http://www.w3.org/2005/Atom">
 		<generator uri="[generator]">bubger</generator>
-		<id>mailto:[mailto]</id>
+		<id>[base]/</id>
 		<title>[title]</title>
 		<updated>[updated]</updated>
 		<link rel="self" href="[base]/index.atom"/>
@@ -174,7 +174,6 @@ int atomIndexOpen(FILE *file) {
 	);
 	struct Variable vars[] = {
 		{ "generator", GENERATOR_URL },
-		{ "mailto", baseMailto },
 		{ "title", baseTitle },
 		{ "updated", iso8601(time(NULL)).s },
 		{ "base", baseURL },