You wrote in the other thread that you tried to set the relaychannel to rw and party and so on. This function probably wants a ChatTypeID, like "RAID_WARNING". That should do it, but if you don't want all the messages in the /rw channel, or if it doesn't work for some reason, you can edit the file twoboxtoolkit.lua. Look for a function that looks like this:

Code:
function twoboxtoolkit:AUTOFOLLOW_END()
	isBroken = true
	if (isFollowing) then
    	--SendChatMessage("Follow is broken", "WHISPER", nil, self.db.profile.master);
    	if (self.db.profile.followwarning) then
        	twoboxtoolkit:relayMessage("Follow is broken")
    	end
    	isFollowing = false
	end
end
And try replacing it with this:

Code:
function twoboxtoolkit:AUTOFOLLOW_END()
	isBroken = true
	if (isFollowing) then
    	SendChatMessage("Follow is broken", "RAID_WARNING");
    	--if (self.db.profile.followwarning) then
    	--	twoboxtoolkit:relayMessage("Follow is broken")
    	--end
    	isFollowing = false
	end
end