<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title>www.ritlabs.com [Topic: Plungins and Voyager]</title>
		<link>http://www.ritlabs.com</link>
		<description>New posts in Plungins and Voyager of  forum at www.ritlabs.com [www.ritlabs.com]</description>
		<language>en</language>
		<docs>http://backend.userland.com/rss2</docs>
		<lastBuildDateTag>Mon, 15 Sep 2008 14:38:49 +0300</lastBuildDateTag>		<item>
			<title>Plungins and Voyager</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic6599/message25147/">Plungins and Voyager</a></b> <i>How to use relative Paths?</i> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			actually the problem lies with the plugin mostly and not Voyager.<br />For example the Extended Macro Plugin (XMP) does not need its path stored in Voyager to work. Or one of the anti-spam-plugins (AntiSpam sniper) does also not need the full path mentioned but specifically asks whether Voyager is being used on installation. <br />
			<i>15 September 2008 14:38:49, <a href="http://www.ritlabs.com/en/forums/">Dominik Reichardt</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic6599/message25147/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic6599/message25147/</guid>
			<pubDate>Mon, 15 Sep 2008 14:38:49 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Plungins and Voyager</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic6599/message25132/">Plungins and Voyager</a></b> <i>How to use relative Paths?</i> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			you can open Voyager, change that path, save changes &nbsp;and then check which file on the stick was just changed. Open the file with a text editor and see if you can find what has to be changed. You can also compare the file with a previously saved version, to see what exactly changed.<br />(but this will not help if the data in the file is somehow encrypted)<br /><br />You can also save a couple of versions of that config file which store different abs. paths. Then automatically replace the active version with a one storing the current stick letter. Could be several other solutions too, more or less complicated.<br />But I think you should contact Ritlabs support with this question instead of looking for workaround 'hacks'. <br />
			<i>14 September 2008 17:07:58, <a href="http://www.ritlabs.com/en/forums/">bigg one</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic6599/message25132/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic6599/message25132/</guid>
			<pubDate>Sun, 14 Sep 2008 17:07:58 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Plungins and Voyager</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic6599/message25126/">Plungins and Voyager</a></b> <i>How to use relative Paths?</i> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Thanks, that's a good idea. Sounds like cheating, but it seems to work .As long as meet a computer where the "surley free" letter is not free. On my computer at work "T:" is not free... <img src="http://www.ritlabs.com/bitrix/images/main/smiles/5/icon_smile.gif" border="0" data-code=":-)" data-definition="SD" alt=":-)" style="width:16px;height:16px;" title="" class="bx-smile" />)<br /><br /><br />====quote====<br />bigg one writes:<br />I don't use Voyager, but there should be a better way - can't believe app designed to run from a stick uses absolute paths.Try \Plugins or .\Plugins first<br />=============<br /><br />That was my first reaction too. But if you want to add a plugins you have to select the path in a dialog an Voyager saves the absolute path. I have no idea where the path is saved, otherwise I would have tried to chance it manually.<br /><br />Thanks again, but I still hope that there is a better solution... <br />
			<i>14 September 2008 00:39:46, <a href="http://www.ritlabs.com/en/forums/">Sönke Schmidt</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic6599/message25126/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic6599/message25126/</guid>
			<pubDate>Sun, 14 Sep 2008 00:39:46 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Plungins and Voyager</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic6599/message25113/">Plungins and Voyager</a></b> <i>How to use relative Paths?</i> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			you can use the DOS SUBST command to have one more fixed drive letter assigned to the stick (along with the random drive letter it gets when attached)<br /><br />Pick a drive letter that will be surely free everywhere, like T:<br />Make the path T:\Plugins<br /><br />Once you attach the stick and see its letter (say it's G:) , on the command prompt type<br />subst T: G:\<br /><br />now you'll have a virtual drive T:\ identical to G:\, and the path T:\Plugins will be valid<br /><br />To make it easier, put a .bat file on your stick with the following command<br /><br />subst T: %~d0\<br /><br />%~d0\ automatically expands to the letter of the drive on which the .bat file is stored, so it doesn't matter which letter is assigned to the stick<br /><br />Make also a second .bat file with a command<br /><br />subst T: /d<br /><br />to remove T: drive when you're finished (nothing will be actually deleted). BTW SUBST's are not permanent, T: will disappear after a reboot even if you forget to remove it.<br /><br />--<br />I don't use Voyager, but there should be a better way - can't believe app designed to run from a stick uses absolute paths.<br />Try \Plugins or .\Plugins first<br /> <br />
			<i>12 September 2008 23:54:46, <a href="http://www.ritlabs.com/en/forums/">bigg one</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic6599/message25113/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic6599/message25113/</guid>
			<pubDate>Fri, 12 Sep 2008 23:54:46 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
		<item>
			<title>Plungins and Voyager</title>
			<description><![CDATA[<b><a href="http://www.ritlabs.com/en/forums/forum4/topic6599/message25110/">Plungins and Voyager</a></b> <i>How to use relative Paths?</i> in forum <a href="http://www.ritlabs.com/en/forums/forum4/">The Bat! - Configuring the E-mail Client</a>. <br />
			Hi, everybody!<br />I am using Voyager on my USB-stick and would like to use plugins. Unfortunately Voyager save the absolute path (e.g. G:\Plugins). But it is the nature of a USB-stick that the drive letter changes, thus the plugin is not found. <br /><br />So, is it possible to use relative paths? <br /><br />Thanks<br />Sönke <br />
			<i>12 September 2008 16:26:35, <a href="http://www.ritlabs.com/en/forums/">Sönke Schmidt</a>.</i>]]></description>
			<link>http://www.ritlabs.com/en/forums/forum4/topic6599/message25110/</link>
			<guid>http://www.ritlabs.com/en/forums/forum4/topic6599/message25110/</guid>
			<pubDate>Fri, 12 Sep 2008 16:26:35 +0300</pubDate>
			<category>The Bat! - Configuring the E-mail Client</category>
		</item>
	</channel>
</rss>
