<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://ebasso.net/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=200.181.52.146</id>
	<title>Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://ebasso.net/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=200.181.52.146"/>
	<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=Special:Contributions/200.181.52.146"/>
	<updated>2026-06-02T06:01:33Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.40.0</generator>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=Desbloqueando_documentos_Bloqueados&amp;diff=28</id>
		<title>Desbloqueando documentos Bloqueados</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=Desbloqueando_documentos_Bloqueados&amp;diff=28"/>
		<updated>2007-05-25T21:48:50Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Se você recebeu está mensagem &amp;#039;&amp;#039;O documento já está locado &amp;#039;&amp;#039; ou &amp;#039;&amp;#039;The document is already locked..&amp;#039;&amp;#039;.  Para resolver isso crie uma ação ou um agente com o seguinte código (@Formula...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Se você recebeu está mensagem &#039;&#039;O documento já está locado &#039;&#039; ou &#039;&#039;The document is already locked..&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
Para resolver isso crie uma ação ou um agente com o seguinte código (@Formula):&lt;br /&gt;
&lt;br /&gt;
 FIELD $Writers := @DeleteField;&lt;br /&gt;
 FIELD $WritersDate := @DeleteField;&lt;br /&gt;
&lt;br /&gt;
Com isso você remove o Lock do Documento e já pode editá-lo novamente.&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=Buscando_mensagens_via_POP3_para_o_Domino&amp;diff=27</id>
		<title>Buscando mensagens via POP3 para o Domino</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=Buscando_mensagens_via_POP3_para_o_Domino&amp;diff=27"/>
		<updated>2007-05-18T15:52:00Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Você quer centralizar os seus e-mails de diversos provedores no Domino.  Já usei dois programas para fazer isso, um até integrei com servidor de fax da Avaya. Estou usando atualmente o ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Você quer centralizar os seus e-mails de diversos provedores no Domino.&lt;br /&gt;
&lt;br /&gt;
Já usei dois programas para fazer isso, um até integrei com servidor de fax da Avaya.&lt;br /&gt;
Estou usando atualmente o &#039;&#039;&#039;fetchmail&#039;&#039;&#039; (Linux) que é muito bom.&lt;br /&gt;
&lt;br /&gt;
Ambos fazem o mesmo buscam via pop3 ou imap e envia via smtp para o destinatário.&lt;br /&gt;
&lt;br /&gt;
Você deve criar uma bat ou shell conforme o seu sistema operacional. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Obs.: Não esquece de liberar o relay e excluir da checagem de Spam este host no Domino.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
1) Se for executar no Linux o melhor é o &#039;&#039;&#039;fetchmail&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
a) Instala o pacote do &#039;&#039;&#039;fetchmail&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
b) cria o arquivo &#039;&#039;&#039;/etc/.fetchmailrc&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
c) Exemplo&lt;br /&gt;
 &lt;br /&gt;
 set syslog&lt;br /&gt;
 set daemon 300&lt;br /&gt;
 &lt;br /&gt;
 defaults&lt;br /&gt;
 protocol pop3&lt;br /&gt;
 smtphost servidorsmtp.meudominioaqui.com.br&lt;br /&gt;
 &lt;br /&gt;
 # server settings before user settings - make sure you put the change the server settings here&lt;br /&gt;
 nokeep&lt;br /&gt;
 # at least initially keep the pop3 messages on the server so they don&#039;t disappear&lt;br /&gt;
 forcecr &lt;br /&gt;
 &lt;br /&gt;
 set no bouncemail&lt;br /&gt;
 set postmaster admin@meudominoaqui.com.br &lt;br /&gt;
 &lt;br /&gt;
 poll pop3.locaweb.com.br:&lt;br /&gt;
   user fulano.tal@meudominonalocaweb.com.br pass Senha123 is fulano.tal@meudominoaqui.com.br here&lt;br /&gt;
   user clicanol@meudominonalocaweb.com.br pass Senha456 is ciclano.tal@meudominoaqui.com.br here&lt;br /&gt;
 &lt;br /&gt;
 poll pop3.gmail.com:&lt;br /&gt;
   user fulano.tal@gmail.com pass Senha123 is fulano.tal@meudominoaqui.com.br here&lt;br /&gt;
   user clicanol@gmail.com pass Senha456 is ciclano.tal@meudominoaqui.com.br here&lt;br /&gt;
 &lt;br /&gt;
d) adiciona no seu /etc/rc.local a seguinte linha&lt;br /&gt;
&lt;br /&gt;
 &#039;&#039;&#039;/usr/bin/fetchmail -v -v --all --flush -f /etc/.fetchmailrc&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Para conferir basta apenas ficar de olho  através do comando tail -f /var/log/maillog&lt;br /&gt;
 &lt;br /&gt;
2) Se for executar no Windows basta utilizar o &#039;&#039;&#039;Pullmail.exe&#039;&#039;&#039; e basta criar um documento de programa no Domino que executa a bat a cada 15 minutos por exemplo&lt;br /&gt;
 http://www.winsite.com/bin/Info?500000007295&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=WPS:Mostrando_arquivos_CSV_no_Portal&amp;diff=26</id>
		<title>WPS:Mostrando arquivos CSV no Portal</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=WPS:Mostrando_arquivos_CSV_no_Portal&amp;diff=26"/>
		<updated>2007-05-18T12:11:05Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Veja no Link Abaixo  http://publib.boulder.ibm.com/infocenter/wpdoc/v510/topic/com.ibm.wp.zos.doc/wps/cnt_tmpl_csv.html&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Veja no Link Abaixo&lt;br /&gt;
&lt;br /&gt;
http://publib.boulder.ibm.com/infocenter/wpdoc/v510/topic/com.ibm.wp.zos.doc/wps/cnt_tmpl_csv.html&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=WPS:Adicionando_Servlets_ao_Portal&amp;diff=25</id>
		<title>WPS:Adicionando Servlets ao Portal</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=WPS:Adicionando_Servlets_ao_Portal&amp;diff=25"/>
		<updated>2007-05-18T12:10:17Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Veja no Link Abaixo  http://publib.boulder.ibm.com/infocenter/wpdoc/v510/topic/com.ibm.wp.zos.doc/wps/cnt_tmpl_servlet.html&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Veja no Link Abaixo&lt;br /&gt;
&lt;br /&gt;
http://publib.boulder.ibm.com/infocenter/wpdoc/v510/topic/com.ibm.wp.zos.doc/wps/cnt_tmpl_servlet.html&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=WPS:Adicionando_paginas_jsp_ao_Portal&amp;diff=24</id>
		<title>WPS:Adicionando paginas jsp ao Portal</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=WPS:Adicionando_paginas_jsp_ao_Portal&amp;diff=24"/>
		<updated>2007-05-18T12:09:28Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Veja como no Link Abaixo:  http://publib.boulder.ibm.com/infocenter/wpdoc/v510/index.jsp?topic=/com.ibm.wp.zos.doc/wps/cnt_tmpl_file.html&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Veja como no Link Abaixo:&lt;br /&gt;
&lt;br /&gt;
http://publib.boulder.ibm.com/infocenter/wpdoc/v510/index.jsp?topic=/com.ibm.wp.zos.doc/wps/cnt_tmpl_file.html&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=WPS:Adicionando_paginas_html_ao_Portal&amp;diff=23</id>
		<title>WPS:Adicionando paginas html ao Portal</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=WPS:Adicionando_paginas_html_ao_Portal&amp;diff=23"/>
		<updated>2007-05-18T12:08:39Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Adding HTML files to the portal  Você pode adicionar páginas HTML estáticas ao portal através do FileServer Portlet.  Veja os passos a seguir:  1) Go to the &amp;#039;&amp;#039;&amp;#039;Administration&amp;#039;&amp;#039;&amp;#039; page. ...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Adding HTML files to the portal&lt;br /&gt;
&lt;br /&gt;
Você pode adicionar páginas HTML estáticas ao portal através do FileServer Portlet.&lt;br /&gt;
&lt;br /&gt;
Veja os passos a seguir:&lt;br /&gt;
&lt;br /&gt;
1) Go to the &#039;&#039;&#039;Administration&#039;&#039;&#039; page. &lt;br /&gt;
&lt;br /&gt;
2) Select &#039;&#039;&#039;Portlet Management&#039;&#039;&#039; from the list on the left. &lt;br /&gt;
&lt;br /&gt;
3) Select &#039;&#039;&#039;Portlets&#039;&#039;&#039; from the options under Portal Management. &lt;br /&gt;
&lt;br /&gt;
4) Find the &#039;&#039;&#039;FileServer&#039;&#039;&#039; portlet. You may do this by browsing the list of available portlets, or by using the &#039;&#039;&#039;Search&#039;&#039;&#039; feature, with &amp;quot;Title starts with&amp;quot; set to &amp;quot;FileServer&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
5) Select the &#039;&#039;&#039;Configure&#039;&#039;&#039; option for the &#039;&#039;&#039;FileServer&#039;&#039;&#039; portlet. &lt;br /&gt;
&lt;br /&gt;
6) On the configuration page, you will see a section entitled &#039;&#039;&#039;Parameters and Values&#039;&#039;&#039;. You may add your chosen URL to this list by entering &amp;quot;url&amp;quot; in the &#039;&#039;&#039;New parameter&#039;&#039;&#039; box and your URL in the &#039;&#039;&#039;New value&#039;&#039;&#039; box. Note: if the &amp;quot;url&amp;quot; parameter is already in this list, you may remove it by using &amp;quot;Delete parameter.&amp;quot; &lt;br /&gt;
&lt;br /&gt;
7) If you wish to change the title of the portlet (the default is &amp;quot;FileServer&amp;quot;), select &#039;&#039;&#039;I want to set titles and descriptions&#039;&#039;&#039;. On the following page, select Edit next to the language-specific title you wish to modify, make your changes, then select OK. &lt;br /&gt;
&lt;br /&gt;
8) Select &#039;&#039;&#039;OK&#039;&#039;&#039; to save your changes. &lt;br /&gt;
&lt;br /&gt;
9) In order to place the portlet on a page: &lt;br /&gt;
&lt;br /&gt;
a) return to &#039;&#039;&#039;My Portal&#039;&#039;&#039;;&lt;br /&gt;
&lt;br /&gt;
b) select the page where you wish to deploy this portlet;&lt;br /&gt;
&lt;br /&gt;
c) select &#039;&#039;&#039;Edit Page&#039;&#039;&#039; (under Administration); &lt;br /&gt;
&lt;br /&gt;
d) select &#039;&#039;&#039;Add Portlet&#039;&#039;&#039; under the column where you wish to see the file server portlet added; &lt;br /&gt;
&lt;br /&gt;
e) select the portlet from the given list; and &lt;br /&gt;
&lt;br /&gt;
f) select &#039;&#039;&#039;OK&#039;&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;: Your HTML content can be local (relative path) or remote (absolute path). To use the relative path, you must place your HTML file in the WAR file directory associated with the portlet (for example, FileServer.WAR/FileServerPortlet/html/test.html). You will find the portlet&#039;s directory under wp_root/installedApps. The path for the example above would be &amp;quot;/FileServerPortlet/html/test.html&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Note&#039;&#039;&#039;: The &amp;quot;url&amp;quot; configuration parameter is applied globally to the file server portlet wherever it is placed in the portal (on any page). If you wish to invoke more than one file server portlet on a single page (in order to display the content of more than one static HTML file), you must first copy or clone the portlet using &#039;&#039;&#039;Administration &amp;gt; Portlet Management &amp;gt; Portlets&#039;&#039;&#039;. There you may select the portlet from the given list and select the Copy icon.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Link: &lt;br /&gt;
&lt;br /&gt;
http://publib.boulder.ibm.com/infocenter/wpdoc/v510/topic/com.ibm.wp.zos.doc/wps/cnt_tmpl_file.html&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=Instalando_o_Asterisk_no_CentOS&amp;diff=22</id>
		<title>Instalando o Asterisk no CentOS</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=Instalando_o_Asterisk_no_CentOS&amp;diff=22"/>
		<updated>2007-05-03T21:18:02Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Como estou utilizando o CentOS, ele é compatível com o Red Hat Enterprise 5  Vamos utilizar os módulos disponíveis no site ATrpms.net  1) Edit seu yum.conf e adicione as seguintes entr...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Como estou utilizando o CentOS, ele é compatível com o Red Hat Enterprise 5&lt;br /&gt;
&lt;br /&gt;
Vamos utilizar os módulos disponíveis no site ATrpms.net&lt;br /&gt;
&lt;br /&gt;
1) Edit seu yum.conf e adicione as seguintes entradas&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
2) Vamos instalar a chave RPG&lt;br /&gt;
&lt;br /&gt;
rpm --import http://ATrpms.net/RPM-GPG-KEY.atrpms&lt;br /&gt;
&lt;br /&gt;
3) Vamos instalar as seguintes opções&lt;br /&gt;
&lt;br /&gt;
yum install zaptel zaptel-kmdl-`uname -r`&lt;br /&gt;
&lt;br /&gt;
4) Vamos instalar agora o asterisk&lt;br /&gt;
&lt;br /&gt;
yum install asterisk asterisk-sounds asterisk-addons libpri spandsp&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=Ocultando_o_Console_do_Java&amp;diff=21</id>
		<title>Ocultando o Console do Java</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=Ocultando_o_Console_do_Java&amp;diff=21"/>
		<updated>2007-04-16T19:38:35Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Se você fez uma aplicacao desktop em Java, e ao executar aparece aquela tela de Console,  Sendo que você gostaria que essa janela aparecesse Minimizada, faça então o seguinte:    1) Cr...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Se você fez uma aplicacao desktop em Java, e ao executar aparece aquela tela de Console,&lt;br /&gt;
&lt;br /&gt;
Sendo que você gostaria que essa janela aparecesse Minimizada, faça então o seguinte:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 1) Crie um arquivo .bat para chamar a sua aplicação.&lt;br /&gt;
 &lt;br /&gt;
 2) Dentro dele chame sua aplicação dessa forma:&lt;br /&gt;
 &lt;br /&gt;
 &#039;&#039;&#039;start javaw MyClass&#039;&#039;&#039;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
Pronto, basta testar.&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=Ajustando_o_seu_Endereco_de_e-mail&amp;diff=20</id>
		<title>Ajustando o seu Endereco de e-mail</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=Ajustando_o_seu_Endereco_de_e-mail&amp;diff=20"/>
		<updated>2007-04-16T15:46:53Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Shortname Emails Every week or two, I get an email from a Lotus Notes / Domino mail users that looks like the screenshot below:  This is the first initial last name format that&amp;#039;s the defau...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Shortname Emails&lt;br /&gt;
Every week or two, I get an email from a Lotus Notes / Domino mail users that looks like the screenshot below:&lt;br /&gt;
&lt;br /&gt;
This is the first initial last name format that&#039;s the default when Domino gets installed.&lt;br /&gt;
&lt;br /&gt;
Here&#039;s the fix&lt;br /&gt;
There is a very simple fix to this problem. You can make your emails change from the shortname to RFC 822 format. The steps below show screenshots in version 6+. Version 5 is similar but getting to the configuration document might be slightly different. When you make the change below, your outbound address will be &amp;quot;Firstname Lastname&amp;quot; &amp;lt;shortname@yourcompany.com&amp;gt;. In the receiver&#039;s inbox, your message will show from your firstname and lastname instead of your shortname.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Step 1 - Find your server&#039;s configuration document&lt;br /&gt;
Open your configuration document (Configuration\Messaging\Configurations).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Step 2 - Modify the advanced outbound message options&lt;br /&gt;
Go to Mime\Advanced\Advanced Outbound Message Options and change the &amp;quot;RFC822 phrase handling&amp;quot; to &amp;quot;Use CN as phrase&amp;quot;. That&#039;s it. You may have to &amp;quot;tell router q&amp;quot; and &amp;quot;load router&amp;quot; from the Domino server console to force the change.&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=NOTES.INI:_DesignNoInitialInfobox&amp;diff=19</id>
		<title>NOTES.INI: DesignNoInitialInfobox</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=NOTES.INI:_DesignNoInitialInfobox&amp;diff=19"/>
		<updated>2007-04-16T13:48:26Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: Toda vez que você abre um Formulário, Visão, Agente, etc. no Domino Designer, a Caixa de propriedades é mostrada automaticamente.  Se você quiser que ela apareça somente quando você...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Toda vez que você abre um Formulário, Visão, Agente, etc. no Domino Designer, a Caixa de propriedades é mostrada automaticamente.&lt;br /&gt;
&lt;br /&gt;
Se você quiser que ela apareça somente quando você desejar, adicione a seguinte entrada ao seu notes.ini:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DesignNoInitialInfobox=1&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Agora a caixa de propriedades não irá aparecer mais automaticamente.&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=Variaveis_do_Notes.ini&amp;diff=18</id>
		<title>Variaveis do Notes.ini</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=Variaveis_do_Notes.ini&amp;diff=18"/>
		<updated>2007-04-16T13:45:33Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: New page: &amp;#039;&amp;#039;&amp;#039;Lista de Variáveis do Notes.ini&amp;#039;&amp;#039;&amp;#039;  &amp;#039;&amp;#039;&amp;#039;D&amp;#039;&amp;#039;&amp;#039;  [http://www.ebasso.net/wiki/index.php/DesignNoInitialInfobox DesignNoInitialInfobox]  &amp;#039;&amp;#039;&amp;#039;J&amp;#039;&amp;#039;&amp;#039;  [http://www.ebasso.net/wiki/index.php/JavaMi...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Lista de Variáveis do Notes.ini&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;D&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://www.ebasso.net/wiki/index.php/DesignNoInitialInfobox DesignNoInitialInfobox]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;J&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://www.ebasso.net/wiki/index.php/JavaMinHeapSize JavaMinHeapSize]&lt;br /&gt;
&lt;br /&gt;
[http://www.ebasso.net/wiki/index.php/JavaMaxHeapSize JavaMaxHeapSize]&lt;br /&gt;
&lt;br /&gt;
[http://www.ebasso.net/wiki/index.php/JavaVerbose JavaVerbose]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;U&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://www.ebasso.net/wiki/index.php/UPDATERS UPDATERS]&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
	<entry>
		<id>https://ebasso.net/wiki/index.php?title=Main_Page&amp;diff=2</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://ebasso.net/wiki/index.php?title=Main_Page&amp;diff=2"/>
		<updated>2007-03-30T15:27:31Z</updated>

		<summary type="html">&lt;p&gt;200.181.52.146: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;big&amp;gt;&#039;&#039;&#039;MediaWiki has been successfully installed.&#039;&#039;&#039;&amp;lt;/big&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Consult the [http://meta.wikimedia.org/wiki/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Help:Configuration_settings Configuration settings list]&lt;br /&gt;
* [http://www.mediawiki.org/wiki/Help:FAQ MediaWiki FAQ]&lt;br /&gt;
* [http://mail.wikimedia.org/mailman/listinfo/mediawiki-announce MediaWiki release mailing list]&lt;br /&gt;
&lt;br /&gt;
How to copy files from one Domino server to another&lt;br /&gt;
Wednesday, March 21st, 2007 &lt;br /&gt;
Recently I needed to make &amp;quot;copies&amp;quot; of some Lotus Notes databases and didn&#039;t want to do it from my Notes client. This would have take hours considering the database was 5gb. I knew that there had to be a way to do this and thanks to the assistance of my friend Thomas Gumz, I was able to issue a command line from the Domino server console and presto, the database was instantly copied. Yes, it&#039;s not documented nor supported, but has been around for a long time, at least since V4 according to Thomas. &lt;br /&gt;
&lt;br /&gt;
So let&#039;s look at what you need to do to enable this feature: &lt;br /&gt;
&lt;br /&gt;
The server console commands are turned off by default, you need to first enable them: &lt;br /&gt;
&lt;br /&gt;
Set this server notes.ini variable, like so: &lt;br /&gt;
&lt;br /&gt;
&amp;gt; set config CLUSTER_ADMIN_ON=1 (even if the server is not a in cluster, doesn&#039;t matter). &lt;br /&gt;
&lt;br /&gt;
No need to restart the server, it becomes active immediately. &lt;br /&gt;
&lt;br /&gt;
This enables this new command: &lt;br /&gt;
&lt;br /&gt;
CL COPY sourcedb targetdb &lt;br /&gt;
&lt;br /&gt;
Examples for the CL COPY command: &lt;br /&gt;
&lt;br /&gt;
&amp;gt; CL copy serverA!!db1.nsf serverB!!db2.nsf &lt;br /&gt;
This would create a regular non-replica copy of db1.nsf on serverA as db2.nsf on ServerB &lt;br /&gt;
&lt;br /&gt;
&amp;gt; CL copy serverA!!db1.nsf serverB!!db2.nsf REPLICA &lt;br /&gt;
This would create a replica copy of db1.nsf on serverA as db2.nsf on ServerB &lt;br /&gt;
&lt;br /&gt;
&amp;gt; CL copy serverA!!db1.nsf serverB!!db2.nsf TEMPLATE &lt;br /&gt;
This would create a template copy (only design, no data) of db1.nsf on serverA as db2.nsf on ServerB &lt;br /&gt;
&lt;br /&gt;
&amp;gt; CL copy db1.nsf db2.nsf &lt;br /&gt;
This would create a regular non-replica copy of db1.nsf as db2.nsf on the same local server&lt;/div&gt;</summary>
		<author><name>200.181.52.146</name></author>
	</entry>
</feed>