Interesting? Just did a test of copying from a message from the Pegasus Mail list.
Did a simple Ctrl-A and Ctrl-C.
Was able to paste it in Libreoffice Writer 7.3
Used Ctrl-V no problem
Used Ctrl-V with RTF option no problem
Used Ctrl-V with unformatted text.
Also did same with Writer 7.2 and no issues.
Pasted same things in Calc using all the options with no problems.
Again, was just a basic message.
03 August 2022 at 14:14, Brian Fluet wrote:
PMAIL Single vs Muli user installat (at least in part)
On 3 Aug 2022 at 12:04, Michael D. Setzer II wrote:
I've used Pegasus going back to the Dos version on
Novell 2.2 servers. Don't recall when they made change
from mail being in C:\PMAIL\MAIL to
C:\PMAIL\MAIL\user directory, and ADMIN was default.
Just an aside, "if" you have / had any other HIERARCH (that has worked for you)
you can move it on as you upgrade hardware and/or OS
I have since day one (back in DOS Peg ver 2.x days) used
WINPMAIL.EXE directory: D:\<MyDir>\Mail
Home mailbox location: D:\<MyDir>\MAIL\<MyMailUserDir>
New mailbox location: D:\<MyDir>\MAIL\<MyMailUserDir>
On some boxes D:\ is (on can be) Z:\
But I am using Linux, so don't have some of the MS issues.
What versions of libreoffice have you tried?
I've got the 7.3 version. (Actually 7.3.5.2)
They have a 7.4 in beta, but haven't looked at it.
Their process to send document via email doesn't work with Pegasus, but created a simple macro that does work. Should work in windows just use C:\PMAIL\Programs\WSENTO.EXE instead of linux path to it.
Sub Mailto
Dim oDoc As Object
Dim Path$, sendto$,cmd$,space$
oDoc = ThisComponent
Path$ = mid(oDoc.getURL(),8,100)
space$=" "
cmd$="wine64 /home/msetzerii/.wine/drive_c/PMAIL/Programs/WSENDTO.EXE"&space$
sendto$ = InputBox ("Enter TO: address(s)/Subject ","Enter TO: / Subject"
If oDoc.HasLocation() Then
sendto$=replace(sendto$,"/","?subject=",1,1)
sendto$=replace(sendto$," ","%20"
cmd$=cmd$&Path$&space$&"mailto:"&sendto$&"&body=SENDING%20"&Path$
print cmd$
shell(cmd$)
Else
Print "The document has not yet been stored"
End If
End Sub
Have another one that creates a pdf file of current document to send, but that code is lot more.
Interesting? Just did a test of copying from a message from the Pegasus Mail list.
Did a simple Ctrl-A and Ctrl-C.
Was able to paste it in Libreoffice Writer 7.3
Used Ctrl-V no problem
Used Ctrl-V with RTF option no problem
Used Ctrl-V with unformatted text.
Also did same with Writer 7.2 and no issues.
Pasted same things in Calc using all the options with no problems.
Again, was just a basic message.
03 August 2022 at 14:14, Brian Fluet wrote:
PMAIL Single vs Muli user installat (at least in part)
>On 3 Aug 2022 at 12:04, Michael D. Setzer II wrote:
>
>> I've used Pegasus going back to the Dos version on
>> Novell 2.2 servers. Don't recall when they made change
>> from mail being in C:\PMAIL\MAIL to
>> C:\PMAIL\MAIL\user directory, and ADMIN was default.
Just an aside, "if" you have / had any other HIERARCH (that has worked for you)
you can move it on as you upgrade hardware and/or OS
I have since day one (back in DOS Peg ver 2.x days) used
WINPMAIL.EXE directory: D:\<MyDir>\Mail
Home mailbox location: D:\<MyDir>\MAIL\<MyMailUserDir>
New mailbox location: D:\<MyDir>\MAIL\<MyMailUserDir>
On some boxes D:\ is (on can be) Z:\
But I am using Linux, so don't have some of the MS issues.
What versions of libreoffice have you tried?
I've got the 7.3 version. (Actually 7.3.5.2)
They have a 7.4 in beta, but haven't looked at it.
Their process to send document via email doesn't work with Pegasus, but created a simple macro that does work. Should work in windows just use C:\PMAIL\Programs\WSENTO.EXE instead of linux path to it.
Sub Mailto
Dim oDoc As Object
Dim Path$, sendto$,cmd$,space$
oDoc = ThisComponent
Path$ = mid(oDoc.getURL(),8,100)
space$=" "
cmd$="wine64 /home/msetzerii/.wine/drive_c/PMAIL/Programs/WSENDTO.EXE"&space$
sendto$ = InputBox ("Enter TO: address(s)/Subject ","Enter TO: / Subject")
If oDoc.HasLocation() Then
sendto$=replace(sendto$,"/","?subject=",1,1)
sendto$=replace(sendto$," ","%20")
cmd$=cmd$&Path$&space$&"mailto:"&sendto$&"&body=SENDING%20"&Path$
print cmd$
shell(cmd$)
Else
Print "The document has not yet been stored"
End If
End Sub
Have another one that creates a pdf file of current document to send, but that code is lot more.