Друзья, кто нибудь сталкивался с такой задачей? Нужен небольшой документ (можно хоть из книги по Domino) что Lotus гарантированно доставляет почту внутри нашей локальной сети (внутри одного домена Domino в пределах одного сервера Domino). Просмотрел книги по администрированию, не нашел там такого термина как гарантированная доставка. Сижу, парюсь ((
Yesterday was that day I part dread and part cherish each year, when my accountant visits with the magic number that is my Corporation Tax liability for the year gone.
Yesterday it was the accounts for year 7 of Rockall Design ltd, which as I mentioned last year, was disappointing, to say the least.
Turnover in year 7 was about 60% of the year before. Luckily, this year is going much better and already - less than half way in to it - I've made as much as in the whole of the year before.
Brilliant. You must be rolling in money? Not quite.
The snowball effect of not putting aside enough tax in year 6 is still haunting me. Had year 7 been a better year I would have had enough to cover the tax of year 6. As it wasn't, I didn't and so I had to go cap-in-hand to HMRC who let me pay year 6's tax in instalments, which I've been doing during and with money earned in year 8!
You can see the problem here, I'm sure. Not having tax money put aside has a massive knock-on effect in the coming years.
Luckily the tax I owe on year 7 is, as you can imagine, much lower than year 6. As year 8 is going well I have the money to cover it put aside. While I've also got the money to cover the tax on money earned so far in year 8 and have put that aside in a separate account as well, it doesn't leave me with much to live on. Like, barely enough to survive.
The trouble with Corporation Tax is that you pay it all in one lump sum 9 months after your company's year has ended. My year ends on 31/10 and I pay tax on 31/July each year. The accountant tells me the amount to pay at about the midpoint of those two dates.
Part of me wishes I could move to a "PAYE" model for Corporation Tax. As it stands this year I'm having to put away 1,000s and 1,000s of Pounds in to a separate account, knowing it has to stay there untouched until August next year. No matter how rough things might get in the following 18 months, not touching the tax money you've set aside is so, so hard. I'd rather just give HMRC big lumps every now and then and not be able to touch it.
As it stands this year, my company's turnover doesn't seem to tally with my quality of life. I look rich but feel poor.
Running your own business is massively rewarding and I love every minute of it. Mostly. There are sides to it I could do without though. Mainly the stress. Over the last year or so it's been almost unbearable. Some might strive on it, but I don't like it much at all and can tell it's had a negative affect on general wellbeing.
The alternative to not running my own business is to get a "proper job". This would probably mean a lot of travelling, staying away and being tied to a desk 9-5 each day. I want to avoid that at all costs.
With my own company I love the variety of work I get, being at home all the time to see the kids, being around to help Karen out and being able to take impromptu time off. Stress is the price I have to expect to pay for this luxury, I guess.
Again, the lesson learnt is do notever spend everything your company is earning. No matter how confident you are that you'll have enough spare in the following year to cover it. Anything could happen.
It's not a mistake I ever intend on making again.
Ending with a couple of clichés - every cloud has a silver lining and there's a light at the end of the tunnel.
When using send and file mail, a pop up box is presented with the folder structure of the user.
The whole folder structure is open, and having many folders and sub folders makes it time consuming to browse down to the one needed to file the new mail. Also closing folders to get the folder structure less long, is also time consuming.
It would be much faster to file the mail if the folder structure tree were closed, and the user instead could open the part of the folder structure needed.
Wayne Gibbons has commented on this: I had a look at the @Picklist function (which is the function which that button is calling) and there didn't seem to be any documented option to control that.
We use an Office location and an Internet location (which uses passthru servers in the DMZ with encrypted Notes ports), with different connection documents, so our users don't need to start/use a special VPN just to get to their mail.
That means I have to switch to the Office location in the morning, and to the Internet location when I take my computer home every day.
What I propose is that the locations can be linked to an IP address or subnet, so my client would switch/start automatically in the location document I have specified for that IP.
That way our users in Notes would have same experience than the Oulook users we are migrating, and not to worry about those location documents anymore.
This would be very similar to Sametime "Geographic locations", it doesn't seem to be so science fiction; in fact I have implemented it on a very rudimentary way with Lotusscript in minutes (launched at client startup via StartupDB=) and it works (but I need a native thing!).
- Stores location-ranges associations in notes.ini variable, like
Call session.SetEnvironmentVar("IPLocation", myIP+","+location+";"+session.GetEnvironmentString("IPLocation", False),False) ' notice the new one is added at the begining so if exceeded string older are discarded
End If
End If
End Sub
Function CurrentRange() As String
' This way also gets VPN address
allranges=""
Set IPConfigSet = GetObject("winmgmts:{impersonationLevel=impersonate}").ExecQuery ("select IPAddress from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")
Print "Getting IPs", Now
Forall IPConfig In IPConfigSet
If Not Isnull(IPConfig.IPAddress) Then
For i=Lbound(IPConfig.IPAddress) To Ubound(IPConfig.IPAddress)
If IPConfig.IPAddress(i) <>"0.0.0.0" Then
CurrentRange=Strleftback(IPConfig.IPAddress(i),".")+".*" ' return only one
We use an Office location and an Internet location (which uses passthru servers in the DMZ with encrypted Notes ports), with different connection documents, so our users don't need to start/use a special VPN just to get to their mail.
That means I have to switch to the Office location in the morning, and to the Internet location when I take my computer home every day.
What I propose is that the locations can be linked to an IP address or subnet, so my client would switch/start automatically in the location document I have specified for that IP.
That way our users in Notes would have same experience than the Oulook users we are migrating, and not to worry about those location documents anymore.
This would be very similar to Sametime "Geographic locations", it doesn't seem to be "rocket science"; in fact I have implemented it on a very rudimentary way with Lotusscript in minutes (launched at client startup via StartupDB=) and it works (but I need a native thing!).
- Stores location-ranges associations in notes.ini variable, like
Call session.SetEnvironmentVar("IPLocation", myIP+","+location+";"+session.GetEnvironmentString("IPLocation", False),False) ' notice the new one is added at the begining so if exceeded string older are discarded
End If
End If
End Sub
Function CurrentRange() As String
' This way also gets VPN address
allranges=""
Set IPConfigSet = GetObject("winmgmts:{impersonationLevel=impersonate}").ExecQuery ("select IPAddress from Win32_NetworkAdapterConfiguration where IPEnabled=TRUE")
Print "Getting IPs", Now
Forall IPConfig In IPConfigSet
If Not Isnull(IPConfig.IPAddress) Then
For i=Lbound(IPConfig.IPAddress) To Ubound(IPConfig.IPAddress)
If IPConfig.IPAddress(i) <>"0.0.0.0" Then
CurrentRange=Strleftback(IPConfig.IPAddress(i),".")+".*" ' return only one
Patrick Kwinten has released a new version
of this 'Bildr'
project. The main extension is the ability to create albums of pictures.
He describes the new functionality in his
blog. Also Dan O'Connor has updated his project
'XPages
Documentation ...
The IBM Client for Smart Work solution includes open standardsbased email, productivity editors, real time communication, social computing and other software that can be used on a variety of netbooks, thin hardware clients, and desktopslaptops. The IBM Client for Smart Work offers a complete, ...
Installation files are located on the IBM® Lotus Notes® Traveler Server DVD or can be downloaded from Passport Advantage or Partner World. Maintenance releases can also be obtained from Fix Central. Versions obtained from Fix Central will require Lotus Notes® Traveler to be already installed. ...
Follow these steps to perform an automated installation of the IBM® Lotus Notes® Traveler server. Installation files are located on the IBM® Lotus Notes® Traveler Server DVD or can be downloaded from Passport Advantage or Partner World. Maintenance releases can also be obtained from Fix Central. ...
Follow these steps to perform an automated installation of the IBM® Lotus Notes® Traveler server. Installation files are located on the IBM® Lotus Notes® Traveler Server DVD or can be downloaded from Passport Advantage or Partner World. Maintenance releases can also be obtained from Fix Central. ...
IBM® Lotus Notes® Traveler 8.5.2 delivers new features, such as Android and Apple iPad support, meeting invitations on Apple devices, and user managed security. h2 Operating system support h2
The Lotus Notes Traveler server can be installed on the following operating systems for Intel® ...
This document contains information about IBM Lotus Notes Traveler APAR fixes by release. For the latest maintenance releases and download information see the Lotus Notes Traveler Recommended Maintenance page. Note: All Lotus Traveler maintenance is cumulative. All fixes in a release are ...
On March 2nd the Chilean government announced that it will be extending daylight saving time two weeks, until April 2nd. Chile was originally schedule to end daylight saving time at midnight between March 12th and March 13th. This article discusses the impact of these changes.