diff --git a/exec/login.src b/exec/login.src
deleted file mode 100644
index f43450739886dcdba29e160ce6ffbd221095c462..0000000000000000000000000000000000000000
--- a/exec/login.src
+++ /dev/null
@@ -1,81 +0,0 @@
-# login.src
-
-# Login module for Synchronet BBS v2.2+
-
-# $Id$
-
-# @format.tab-size 8, @format.use-tabs true
-
-!include sbbsdefs.inc
-
-logout
-
-node_status NODE_LOGON
-
-compare_ars WIP
-if_true
-	exec_bin WIPLOGIN
-	return
-	end_if
-
-int c
-
-:top
-compare c 10
-if_greater_or_equal
-	hangup
-	return
-	end_if
-
-print "\r\n\1nEnter Name, Number, '\1hNew\1n', or '\1hGuest\1n'\r\nNN: "
-getstr str 25 K_UPRLWR|K_LOWPRIO|K_E71DETECT|K_TAB
-truncsp str
-compare_str ""
-if_true
-	add c 1
-	goto top
-	end_if
-compare_str "GUEST"
-if_true
-	setstr "%q"
-	compare_str "VERTx"
-	if_true
-		no_yes "Are you a registered Synchronet owner"
-		if_false
-			print "\r\n\1h\1rLogon as \1wNEW\1r to create your account.\r\n"
-			goto top
-			end_if
-		end_if
-	setstr "Guest"
-	end_if
-compare_str "NEW"
-if_true
-	setstr "%q"
-	compare_str "VERTx"
-	if_true
-		yes_no "Are you calling just to download the Synchronet DEMO"
-		if_true
-			setstr "Guest"
-			login "PW: "
-			if_true
-				logon
-				if_true
-					return
-					end_if
-				end_if
-			end_if
-		end_if
-	newuser
-	logon
-	return
-	end_if
-login "PW: "
-if_true
-	logon
-	if_true
-		return
-		end_if
-	end_if
-add c 2
-goto top
-